diff options
author | Mihai Moldovan <ionic@ionic.de> | 2017-12-24 20:17:18 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2017-12-25 03:15:04 +0100 |
commit | b30cfaa24d28dfcf5ee67d33cb614c9800bbddd2 (patch) | |
tree | 3c3e08566f775d6eb0620f9161d76b3eaac9fdab /nxcomp/src | |
parent | 5ff87ca9eeeacf469edd3cebbd1998173976c192 (diff) | |
download | nx-libs-b30cfaa24d28dfcf5ee67d33cb614c9800bbddd2.tar.gz nx-libs-b30cfaa24d28dfcf5ee67d33cb614c9800bbddd2.tar.bz2 nx-libs-b30cfaa24d28dfcf5ee67d33cb614c9800bbddd2.zip |
nxcomp/src/Log.h: NXLogStamp constructor should actually take a size_t-typed line parameter.
Diffstat (limited to 'nxcomp/src')
-rw-r--r-- | nxcomp/src/Log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nxcomp/src/Log.h b/nxcomp/src/Log.h index 68f06bc66..68680697f 100644 --- a/nxcomp/src/Log.h +++ b/nxcomp/src/Log.h @@ -105,7 +105,7 @@ class NXLogStamp } - NXLogStamp(const char *file, const char *function, int line, NXLogLevel level) : file_(file), function_(function), line_(line), level_(level) + NXLogStamp(const char *file, const char *function, size_t line, NXLogLevel level) : file_(file), function_(function), line_(line), level_(level) { gettimeofday(×tamp_, NULL); } |