summaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-06 16:19:44 +0000
committerJim Meyering <jim@meyering.net>2005-03-06 16:19:44 +0000
commit74e3e13b3a19afc2f8573afbad0002060b7e3d4d (patch)
treec793d9d544dc802791ab37d884eae6f98a14d7db /src/printf.c
parentc747ee56a77e58a19327a48e55d005fbef269d0f (diff)
downloadcoreutils-74e3e13b3a19afc2f8573afbad0002060b7e3d4d.tar.xz
Remove register keyword.
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/printf.c b/src/printf.c
index e6c2eaaa8..23db3ce01 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -1,5 +1,5 @@
/* printf - format and print data
- Copyright (C) 1990-2004 Free Software Foundation, Inc.
+ Copyright (C) 1990-2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -240,7 +240,7 @@ print_esc_char (char c)
static int
print_esc (const char *escstart, bool octal_0)
{
- register const char *p = escstart + 1;
+ const char *p = escstart + 1;
int esc_value = 0; /* Value of \nnn escape. */
int esc_length; /* Length of \nnn escape. */