]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/journal.c
Update copyright notice
[empserver] / src / lib / subs / journal.c
index 9313135ab453859ff223cbda08ee7d16d00aa31f..cd187132a122e9043edc58b56b9e0d6b553d6f40 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -26,7 +26,7 @@
  *  ---
  *
  *  journal.c: Log a journal of events to a file
- * 
+ *
  *  Known contributors to this file:
  *     Markus Armbruster, 2004-2008
  *     Ron Koenderink, 2008
@@ -86,7 +86,7 @@ journal_entry(char *fmt, ...)
        time(&now);
        fprintf(journal, "%.24s %10.10s ",
                ctime(&now), empth_name(empth_self()));
-       
+
        va_start(ap, fmt);
        vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
        va_end(ap);