diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 2006-04-29 16:26:57 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 2006-04-29 16:26:57 +0000 |
commit | 57dd93e4e7b3aa19bad96b65e1df36af2e725b69 (patch) | |
tree | d89d9eaba5cb7b4bff4f5516b7958d0166cf6dca /usr.sbin/mopd/mopa.out | |
parent | 657af46631787afef0ccb38c58cfa95066cdcf49 (diff) |
Change the compile time option -DINFO into a runtime option to get ride
of some lint warnings. -moj
Diffstat (limited to 'usr.sbin/mopd/mopa.out')
-rw-r--r-- | usr.sbin/mopd/mopa.out/mopa.out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mopd/mopa.out/mopa.out.c b/usr.sbin/mopd/mopa.out/mopa.out.c index b96781350a3..b3e2191dfcb 100644 --- a/usr.sbin/mopd/mopa.out/mopa.out.c +++ b/usr.sbin/mopd/mopa.out/mopa.out.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mopa.out.c,v 1.7 2006/04/17 16:23:01 deraadt Exp $ */ +/* $OpenBSD: mopa.out.c,v 1.8 2006/04/29 16:26:56 maja Exp $ */ /* mopa.out - Convert a Unix format kernel into something that * can be transferred via MOP. @@ -48,7 +48,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: mopa.out.c,v 1.7 2006/04/17 16:23:01 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: mopa.out.c,v 1.8 2006/04/29 16:26:56 maja Exp $"; #endif #include "os.h" @@ -101,7 +101,7 @@ main (int argc, char **argv) &dl.aout, &dl.a_text,&dl.a_text_fill, &dl.a_data,&dl.a_data_fill, - &dl.a_bss ,&dl.a_bss_fill ); + &dl.a_bss ,&dl.a_bss_fill, 0); if (dl.aout == -1) { fprintf(stderr,"%s: not an a.out file\n",argv[1]); |