GNOME Bugzilla – Bug 133076
added cast for is{alpha|num}
Last modified: 2004-12-22 21:47:04 UTC
./gst/gsturi.c failes with -Wall due to missing cast
Created attachment 23926 [details] [review] added two casts
isalpha() and friends aren't UTF-8 friendly and don't work with ASCII when not in the POSIX locale (which is the bhavior we want here), so I changed them to use g_ascii_isalpha().