diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-11-30 12:37:11 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-11-30 12:37:11 -0500 |
commit | c9333cdb1321d571dfc8f825c6cb20c4c10048a6 (patch) | |
tree | ac25efeea569e47e17f52228263864625609be92 | |
parent | 00c01560f3a354152faf36f1919792cfa5ab0770 (diff) | |
download | NetNuke2-c9333cdb1321d571dfc8f825c6cb20c4c10048a6.tar.gz |
strerr should be stderr.
-rw-r--r-- | netnuke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |