diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-11-02 04:50:32 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-11-02 04:50:32 +0100 |
commit | 29177203e5da4cb42e0c5bc2f2981d6cffbe042c (patch) | |
tree | f4999b1c6e95761f0edcba28336e90c346fd6e28 /lib | |
parent | 1492513f7783c18e0a68d800dc0f6fae25a58e54 (diff) | |
download | samba-29177203e5da4cb42e0c5bc2f2981d6cffbe042c.tar.gz samba-29177203e5da4cb42e0c5bc2f2981d6cffbe042c.tar.bz2 samba-29177203e5da4cb42e0c5bc2f2981d6cffbe042c.zip |
Rename class to "cls" since the first is a keyword name in C++. Thanks,
Brad.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/debug.h b/lib/util/debug.h index 632c24fadb..a5962b04bb 100644 --- a/lib/util/debug.h +++ b/lib/util/debug.h @@ -83,7 +83,7 @@ enum debug_logtype {DEBUG_STDOUT = 0, DEBUG_FILE = 1, DEBUG_STDERR = 2}; */ _PUBLIC_ void dbghdr(int level, const char *location, const char *func); -_PUBLIC_ void dbghdrclass(int level, int class, const char *location, const char *func); +_PUBLIC_ void dbghdrclass(int level, int cls, const char *location, const char *func); /** reopen the log file (usually called because the log file name might have changed) |