# HG changeset patch # User Jim Meyering # Date 901378837 0 # Node ID d7a46a55964c1697b9d4339b12bdd5ed7fafd301 # Parent d59bd56497f1014c989c10e806ab295ea5c72c1f (xatoi): Ansideclify. (fstype_to_string): Ansideclify. diff --git a/lib/mountlist.c b/lib/mountlist.c --- a/lib/mountlist.c +++ b/lib/mountlist.c @@ -129,10 +129,10 @@ /* Return the value of the hexadecimal number represented by CP. No prefix (like '0x') or suffix (like 'h') is expected to be part of CP. */ +/* FIXME: this can overflow */ static int -xatoi (cp) - char *cp; +xatoi (char *cp) { int val; @@ -266,8 +266,7 @@ #ifdef MOUNTED_VMOUNT /* AIX. */ static char * -fstype_to_string (t) - int t; +fstype_to_string (int t) { struct vfs_ent *e;