diff options
author | Gerald Carter <jerry@samba.org> | 2005-03-22 18:07:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:13 -0500 |
commit | 93e04e941e15034c8e7aa1faedc74ce536049153 (patch) | |
tree | f3d64b04d3eb22e4ab44b9889d26272c0b6813f9 /source3/lib | |
parent | 09bb17511b3c5b32ab93ef37dbb451674bcc5a0b (diff) | |
download | samba-93e04e941e15034c8e7aa1faedc74ce536049153.tar.gz samba-93e04e941e15034c8e7aa1faedc74ce536049153.tar.bz2 samba-93e04e941e15034c8e7aa1faedc74ce536049153.zip |
r5961: final round of compiler warning fixes based on feedback from Jason Mader
(This used to be commit 9e77da9320c900b3e437d534e31fa5ff81e9acfd)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 86015b355a..8acdab355a 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -799,7 +799,7 @@ DATA_BLOB strhex_to_data_blob(const char *strhex) { DATA_BLOB ret_blob = data_blob(NULL, strlen(strhex)/2+1); - ret_blob.length = strhex_to_str(ret_blob.data, + ret_blob.length = strhex_to_str((char*)ret_blob.data, strlen(strhex), strhex); |