Update of /cvsroot/agd/server/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7695
Modified Files:
main.c
Log Message:
Changed two strings not to include too much whitespace.
Index: main.c
===================================================================
RCS file: /cvsroot/agd/server/src/main.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- main.c 15 Mar 2004 18:50:28 -0000 1.9
+++ main.c 16 Mar 2004 14:13:03 -0000 1.10
@@ -70,8 +70,8 @@
void usage(char *s)
{
printf("Usage: %s [options] [configuration file]\n", s);
- printf("\tOptions:\n\t\t-d:\n\t\t Increase debug level\n\
- \t\t-?\n\t\t-v:\n\t\t Show version and quit\n");
+ printf("\tOptions:\n\t\t-d:\n\t\t Increase debug level\n"
+ "\t\t-?\n\t\t-v:\n\t\t Show version and quit\n");
exit(0);
}
@@ -84,8 +84,8 @@
printf("Bug reports, suggestions, ideas etc to %s\n", PACKAGE_BUGREPORT);
#ifdef ARCH_README
- printf("Your computer architecture is not fully supported.\
- Please read README.ARCH in the source directory.\n");
+ printf("Your computer architecture is not fully supported. "
+ "Please read README.ARCH in the source directory.\n");
#endif
}
|