all: remove use of 'register' keyword

We should have done this a decade ago...

https://bugzilla.gnome.org/show_bug.cgi?id=730293
This commit is contained in:
Ryan Lortie
2014-05-25 12:18:14 +02:00
committed by Matthias Clasen
parent d217429729
commit dce88768dc
18 changed files with 168 additions and 171 deletions

View File

@@ -83,8 +83,8 @@ g_pattern_ph_match (const gchar *match_pattern,
const gchar *match_string,
gboolean *wildcard_reached_p)
{
register const gchar *pattern, *string;
register gchar ch;
const gchar *pattern, *string;
gchar ch;
pattern = match_pattern;
string = match_string;