summaryrefslogtreecommitdiffstats
path: root/flow/gsl/gslglib.c
diff options
context:
space:
mode:
Diffstat (limited to 'flow/gsl/gslglib.c')
-rw-r--r--flow/gsl/gslglib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/flow/gsl/gslglib.c b/flow/gsl/gslglib.c
index 37c7187..a69a2fd 100644
--- a/flow/gsl/gslglib.c
+++ b/flow/gsl/gslglib.c
@@ -68,8 +68,8 @@ g_stpcpy (gchar *dest,
g_return_val_if_fail (src != NULL, NULL);
return stpcpy (dest, src);
#else
- register gchar *d = dest;
- register const gchar *s = src;
+ gchar *d = dest;
+ const gchar *s = src;
g_return_val_if_fail (dest != NULL, NULL);
g_return_val_if_fail (src != NULL, NULL);
@@ -2036,7 +2036,7 @@ printf_string_upper_bound (const gchar *format,
while (*format)
{
- register gchar c = *format++;
+ gchar c = *format++;
if (c != '%')
len += 1;