# HG changeset patch # User John "Elwin" Edwards # Date 1432149329 14400 # Node ID 301ed6992c2ed3ab5c3f8f6a320a28c30a30111e # Parent 5a77931393f44c9d4ba45c6eb69f37173227e55c arogue7, xrogue: put newlines at the end of startup messages. diff -r 5a77931393f4 -r 301ed6992c2e arogue7/main.c --- a/arogue7/main.c Wed May 20 12:51:16 2015 -0400 +++ b/arogue7/main.c Wed May 20 15:15:29 2015 -0400 @@ -175,9 +175,9 @@ atoi(getenv("SEED")) : lowtime + getpid()); if (wizard) - printf("Hello %s, welcome to dungeon #%d", whoami, dnum); + printf("Hello %s, welcome to dungeon #%d\n", whoami, dnum); else - printf("Hello %s, just a moment while I dig the dungeon...", whoami); + printf("Hello %s, just a moment while I dig the dungeon...\n", whoami); fflush(stdout); seed = dnum; md_srand(seed); diff -r 5a77931393f4 -r 301ed6992c2e xrogue/main.c --- a/xrogue/main.c Wed May 20 12:51:16 2015 -0400 +++ b/xrogue/main.c Wed May 20 15:15:29 2015 -0400 @@ -166,9 +166,9 @@ seed = (int) time(&now) + getpid(); } if (wizard) - printf("Hello %s, welcome to dungeon #%d", whoami, seed); + printf("Hello %s, welcome to dungeon #%d\n", whoami, seed); else - printf("Hello %s, just a moment while I dig the dungeon...", whoami); + printf("Hello %s, just a moment while I dig the dungeon...\n", whoami); fflush(stdout); md_srand(seed);