diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-10-20 10:31:24 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-10-20 10:31:24 +0200 |
commit | 61b8d44f1f76df5abb9e53427f07e9f1ad987e32 (patch) | |
tree | f0f84ebfb28ec44254def01211eeca94c76aeed4 /nxcomp/Loop.cpp | |
parent | da01dc8da1aedb1f75d62c03748a239c54b14483 (diff) | |
parent | 50eb5e4a9bf812895a7d5c4e6ae0775c6910931f (diff) | |
download | nx-libs-61b8d44f1f76df5abb9e53427f07e9f1ad987e32.tar.gz nx-libs-61b8d44f1f76df5abb9e53427f07e9f1ad987e32.tar.bz2 nx-libs-61b8d44f1f76df5abb9e53427f07e9f1ad987e32.zip |
Merge branch 'uli42-pr/fix_compile_warnings' into 3.6.x
Attributes GH PR #230: https://github.com/ArcticaProject/nx-libs/pull/230
Diffstat (limited to 'nxcomp/Loop.cpp')
-rw-r--r-- | nxcomp/Loop.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nxcomp/Loop.cpp b/nxcomp/Loop.cpp index 7e77bc2a9..46031e70d 100644 --- a/nxcomp/Loop.cpp +++ b/nxcomp/Loop.cpp @@ -10201,7 +10201,7 @@ int SetCore() if (getrlimit(RLIMIT_CORE, &rlim)) { #ifdef TEST - *logofs << "Cannot read RLIMIT_CORE. Error is '" + *logofs << "Loop: Cannot read RLIMIT_CORE. Error is '" << ESTR() << "'.\n" << logofs_flush; #endif @@ -10215,7 +10215,7 @@ int SetCore() if (setrlimit(RLIMIT_CORE, &rlim)) { #ifdef TEST - *logofs << "Loop: Cannot read RLIMIT_CORE. Error is '" + *logofs << "Loop: Cannot set RLIMIT_CORE. Error is '" << ESTR() << "'.\n" << logofs_flush; #endif @@ -10224,7 +10224,7 @@ int SetCore() } #ifdef TEST - *logofs << "Loop: Set RLIMIT_CORE to "<< rlim.rlim_max + *logofs << "Loop: RLIMIT_CORE is "<< rlim.rlim_max << ".\n" << logofs_flush; #endif |