1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Renaming cleanup, no pgindent yet.

This commit is contained in:
Bruce Momjian
1998-09-01 03:29:17 +00:00
parent 2aa080fc93
commit af74855a60
329 changed files with 4380 additions and 4388 deletions

View File

@ -200,7 +200,7 @@ size_t errbuf_size;
}
}
return (len);
return len;
}
/*
@ -222,8 +222,8 @@ char *localbuf;
#endif
break;
if (r->code == 0)
return ("0");
return "0";
sprintf(localbuf, "%d", r->code);
return (localbuf);
return localbuf;
}