summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1998-07-15 20:30:10 +0000
committerElliot Lee <sopwith@src.gnome.org>1998-07-15 20:30:10 +0000
commitf3369bf52d6045601593c74e283f839ae3ddebe9 (patch)
tree107507e00df81db660cfe7e9ec0555a82764914b
parent22a9109843375d61e10c6c8292c79484695bf55b (diff)
downloadgnome-common-f3369bf52d6045601593c74e283f839ae3ddebe9.tar.gz
fix typo - s/strtol/strtoul/
svn path=/trunk/; revision=280
-rw-r--r--support/gnomesupport.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/gnomesupport.awk b/support/gnomesupport.awk
index 97a4272..094a6f1 100644
--- a/support/gnomesupport.awk
+++ b/support/gnomesupport.awk
@@ -133,7 +133,7 @@ END {
print " If endptr is not NULL, a pointer to the character after the";
print " last character used in the conversion is stored in the";
print " location referenced by endptr. */";
- print "unsigned long int strtol (const char */*nptr*/, char **/*endptr*/,";
+ print "unsigned long int strtoul (const char */*nptr*/, char **/*endptr*/,";
print " int /*base*/);";
}