diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2017-12-02 01:32:35 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2017-12-02 01:56:41 +0100 |
commit | b8c929773fac19dad8af05d0bc64b1b3fed88309 (patch) | |
tree | 05ee5221e4824d1210682e1be268c981684194f3 /nxcomp/src/Children.cpp | |
parent | 3bd7e03e1adb653b4a914fe0334498c604ea6369 (diff) | |
download | nx-libs-b8c929773fac19dad8af05d0bc64b1b3fed88309.tar.gz nx-libs-b8c929773fac19dad8af05d0bc64b1b3fed88309.tar.bz2 nx-libs-b8c929773fac19dad8af05d0bc64b1b3fed88309.zip |
nxcomp: use lowercase abbreviations for seconds and milliseconds
Diffstat (limited to 'nxcomp/src/Children.cpp')
-rw-r--r-- | nxcomp/src/Children.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nxcomp/src/Children.cpp b/nxcomp/src/Children.cpp index e77d1defd..9486f189a 100644 --- a/nxcomp/src/Children.cpp +++ b/nxcomp/src/Children.cpp @@ -628,7 +628,7 @@ int NXTransWatchdog(int timeout) { #ifdef TEST *logofs << "NXTransWatchdog: Timeout of " << timeout - << " Ms raised in watchdog.\n" << logofs_flush; + << " ms raised in watchdog.\n" << logofs_flush; #endif // @@ -645,7 +645,7 @@ int NXTransWatchdog(int timeout) { #ifdef TEST *logofs << "NXTransWatchdog: Waiting for the timeout " - << "with " << timeout - diffTs << " Ms to run.\n" + << "with " << timeout - diffTs << " ms to run.\n" << logofs_flush; #endif @@ -847,7 +847,7 @@ int NXTransKeeper(int caches, int images, const char *root) #ifdef TEST *logofs << "NXTransKeeper: Going to sleep for " - << timeout / 20 << " Ms.\n" << logofs_flush; + << timeout / 20 << " ms.\n" << logofs_flush; #endif usleep(timeout / 20 * 1000); @@ -937,7 +937,7 @@ int NXTransKeeper(int caches, int images, const char *root) #ifdef TEST *logofs << "NXTransKeeper: Going to sleep for " << timeout - << " Ms.\n" << logofs_flush; + << " ms.\n" << logofs_flush; #endif usleep(timeout * 1000); |