mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-24 18:08:54 +02:00
docs
2001-04-16 Havoc Pennington <hp@redhat.com> * gqsort.c: docs * gfileutils.c: docs * gwin32.c: docs fixes * gconvert.c: docs * guniprop.c: docs * gutf8.c: docs
This commit is contained in:
committed by
Havoc Pennington
parent
cc3956413d
commit
4eab875811
@@ -1112,7 +1112,7 @@ g_strdelimit (gchar *string,
|
||||
gchar*
|
||||
g_strcanon (gchar *string,
|
||||
const gchar *valid_chars,
|
||||
gchar subsitutor)
|
||||
gchar substitutor)
|
||||
{
|
||||
register gchar *c;
|
||||
|
||||
@@ -1122,7 +1122,7 @@ g_strcanon (gchar *string,
|
||||
for (c = string; *c; c++)
|
||||
{
|
||||
if (!strchr (valid_chars, *c))
|
||||
*c = subsitutor;
|
||||
*c = substitutor;
|
||||
}
|
||||
|
||||
return string;
|
||||
|
Reference in New Issue
Block a user