diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-11-15 13:57:25 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-11-15 13:57:25 +0000 |
commit | d983ee8800d1213ef9cedad462d076bd7416c27a (patch) | |
tree | 7e5b93797de8294bde150dd21323368b7068aec7 /source3/include/debug.h | |
parent | 3b06627f00ba4621011383e0fab0b0ba5d4e4645 (diff) | |
download | samba-d983ee8800d1213ef9cedad462d076bd7416c27a.tar.gz samba-d983ee8800d1213ef9cedad462d076bd7416c27a.tar.bz2 samba-d983ee8800d1213ef9cedad462d076bd7416c27a.zip |
Add const to DEBUG() macro.
(This used to be commit 43020bb4e61e3b44c2637e49f9e98222262f09b1)
Diffstat (limited to 'source3/include/debug.h')
-rw-r--r-- | source3/include/debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/debug.h b/source3/include/debug.h index 4b0b4b1ac4..5f87bf06fd 100644 --- a/source3/include/debug.h +++ b/source3/include/debug.h @@ -36,9 +36,9 @@ arguemnts to DEBUG() right. We have got them wrong too often in the past. */ -int Debug1( char *, ... ) PRINTF_ATTRIBUTE(1,2); -BOOL dbgtext( char *, ... ) PRINTF_ATTRIBUTE(1,2); -BOOL dbghdr( int level, char *file, char *func, int line ); +int Debug1( const char *, ... ) PRINTF_ATTRIBUTE(1,2); +BOOL dbgtext( const char *, ... ) PRINTF_ATTRIBUTE(1,2); +BOOL dbghdr( int level, const char *file, const char *func, int line ); extern XFILE *dbf; extern pstring debugf; |