Changed usage of strchrnul to strchr
commit2048323241283a7cc68230014f88bba4965ec1fe
authorCharles Parker <parker.charles@gmail.com>
Thu, 1 Sep 2016 16:07:55 +0000 (1 12:07 -0400)
committerbert <bert.timmerman@xs4all.nl>
Sat, 3 Sep 2016 09:55:38 +0000 (3 11:55 +0200)
tree67a59717dc92158e0cc06eeaca5289e338cd0b21
parent4b4cd0eb0182766cfca040b1c146d4e1f713b139
Changed usage of strchrnul to strchr

strchrnul is a GNU specific extension to the string library and is not included
in the OSX C library. strchr can be substituted by checking for the null return
value and manually setting the pointer to the end of the string.
src/hid/gtk/gui-library-window.c