aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2010-11-30 12:37:11 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2010-11-30 12:37:11 -0500
commitc9333cdb1321d571dfc8f825c6cb20c4c10048a6 (patch)
treeac25efeea569e47e17f52228263864625609be92
parent00c01560f3a354152faf36f1919792cfa5ab0770 (diff)
downloadNetNuke2-c9333cdb1321d571dfc8f825c6cb20c4c10048a6.tar.gz
strerr should be stderr.
-rw-r--r--netnuke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/netnuke.c b/netnuke.c
index 281aaf2..acbbc82 100644
--- a/netnuke.c
+++ b/netnuke.c
@@ -124,7 +124,7 @@ int main(int argc, char* argv[])
{
if((nnlogcleanup()) != 0)
{
- fprintf(strerr, "Failed to cleanup %s: %s\n", NNLOGFILE, strerror(errno));
+ fprintf(stderr, "Failed to cleanup %s: %s\n", NNLOGFILE, strerror(errno));
}
COM(self, "Program start\n");