diff options
author | Herb Lewis <herb@samba.org> | 2003-08-14 21:56:26 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2003-08-14 21:56:26 +0000 |
commit | 2efe201fa4082f0aad7360b9f6f21c7683a29e96 (patch) | |
tree | 734b788772b12e5a322ab002c6674f93dae1701b /source4/lib | |
parent | a19e269c2c401766fe0e44ea0a1daaad14f06f70 (diff) | |
download | samba-2efe201fa4082f0aad7360b9f6f21c7683a29e96.tar.gz samba-2efe201fa4082f0aad7360b9f6f21c7683a29e96.tar.bz2 samba-2efe201fa4082f0aad7360b9f6f21c7683a29e96.zip |
client/client.c - cannot initialize struct with non-const values
include/byteorder.h - fix for IRIX compiler - cannot cast an LVALUE
include/smb_interfaces.h - remove empty structure
source/lib/debug.c - void functions cannot return value
libcli/clifile.c - cannot assign *struct to struct
(This used to be commit 9a724762012f55d21d44ea87add7daf21f7414d1)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/debug.c b/source4/lib/debug.c index 37f93b9ae5..792cf14c5a 100644 --- a/source4/lib/debug.c +++ b/source4/lib/debug.c @@ -129,13 +129,13 @@ const char *do_debug_tab(uint_t n) void log_suspicious_usage(const char *from, const char *info) { if (debug_handlers.ops.log_suspicious_usage) { - return debug_handlers.ops.log_suspicious_usage(from, info); + debug_handlers.ops.log_suspicious_usage(from, info); } } void print_suspicious_usage(const char* from, const char* info) { if (debug_handlers.ops.print_suspicious_usage) { - return debug_handlers.ops.print_suspicious_usage(from, info); + debug_handlers.ops.print_suspicious_usage(from, info); } } |