aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/sysfatal.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-04-20 02:03:38 +0000
committerrsc <devnull@localhost>2004-04-20 02:03:38 +0000
commita0f1e21ff939612898d63ae2245e47dffc1a8153 (patch)
tree581f62db3bad2c54d60cb54b6e577787f55071af /src/lib9/sysfatal.c
parente637c944febf271252e59742aa108d6e0a527eb7 (diff)
downloadplan9port-a0f1e21ff939612898d63ae2245e47dffc1a8153.tar.gz
plan9port-a0f1e21ff939612898d63ae2245e47dffc1a8153.tar.bz2
plan9port-a0f1e21ff939612898d63ae2245e47dffc1a8153.zip
make things work on SunOS
Diffstat (limited to 'src/lib9/sysfatal.c')
-rw-r--r--src/lib9/sysfatal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib9/sysfatal.c b/src/lib9/sysfatal.c
index 33a533b8..00229db0 100644
--- a/src/lib9/sysfatal.c
+++ b/src/lib9/sysfatal.c
@@ -15,7 +15,7 @@ sysfatal(char *fmt, ...)
va_end(arg);
__fixargv0();
- fprint(2, "%s; %s\n", argv0 ? argv0 : "<prog>", buf);
+ fprint(2, "%s: %s\n", argv0 ? argv0 : "<prog>", buf);
exits("fatal");
}