]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/echo.c
Update copyright notice.
[empserver] / src / lib / commands / echo.c
index b0d58efaf9047ffd5819b4385613087967c3e2bc..34c5b5ce57c23b07e547121406ebde28f34001c1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -38,7 +38,7 @@
 int
 echo(void)
 {
-      pr("%s\n", player->argp[1]?player->argp[1]:(s_char *)"");
+    pr("%s\n", player->argp[1] ? player->argp[1] : (s_char *)"");
 
-       return RET_OK;
+    return RET_OK;
 }