aboutsummaryrefslogtreecommitdiff
path: root/migcom.c
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-11-30 00:01:21 +0000
committerThomas Schwinge <tschwinge@gnu.org>2006-11-30 00:01:21 +0000
commite982c14bc34a48529ca0db1c016a768cce01e115 (patch)
treebdf201b23b9ec594b4e05704e2119b2e664b10a8 /migcom.c
parent53280ebcfd46a129f34d6853a093c3cb425a068a (diff)
downloadmig-e982c14bc34a48529ca0db1c016a768cce01e115.tar.gz
mig-e982c14bc34a48529ca0db1c016a768cce01e115.tar.bz2
mig-e982c14bc34a48529ca0db1c016a768cce01e115.zip
2006-11-29 Thomas Schwinge <tschwinge@gnu.org>
Fix compiler, flex and bison warnings. * error.c: Include <stdlib.h>. * lexxer.h (yylex): Add declaration. * migcom.c: Include <stdlib.h>. (main): Set USER, SHEADER and IHEADER to `NULL' by default. (myfclose): Add lost conversion specifications. * parser.h (yyerror): Add declaration. * routine.c (rtPrintArg, rtCheckRoutine): Add braces to avoid ambiguousness. * server.c (WriteSymTabEntries): Make NUM an `u_int'. * user.c (WriteUserIndividual): Add a `default' case in a switch statement and add lost conversion specifications. * lexxer.l: Set option `nounput'. * parser.y (%left): Change commas to spaces.
Diffstat (limited to 'migcom.c')
-rw-r--r--migcom.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/migcom.c b/migcom.c
index 40c274e..5da52b8 100644
--- a/migcom.c
+++ b/migcom.c
@@ -71,6 +71,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include "error.h"
#include "lexxer.h"
@@ -226,13 +227,17 @@ main(int argc, char **argv)
uheader = myfopen(UserHeaderFileName, "w");
if (!UserFilePrefix)
user = myfopen(UserFileName, "w");
+ else
+ user = NULL;
server = myfopen(ServerFileName, "w");
if (ServerHeaderFileName)
sheader = myfopen(ServerHeaderFileName, "w");
+ else
+ sheader = NULL;
if (IsKernelServer)
- {
iheader = myfopen(InternalHeaderFileName, "w");
- }
+ else
+ iheader = NULL;
if (BeVerbose)
{
@@ -324,5 +329,5 @@ static void
myfclose(FILE *file, const char *name)
{
if (ferror(file) || fclose(file))
- fatal("fclose(): ", name, unix_error_string(errno));
+ fatal("fclose(%s): %s", name, unix_error_string(errno));
}