summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-03-22 18:07:58 +0000
committerGerald Carter <jerry@samba.org>2005-03-22 18:07:58 +0000
commit147a6a8a7576f1de7bf50a26b51e82524c7ebd8c (patch)
tree1ff4244298f8cc03399edfa37847c6b612bed886 /source/lib
parent0a992866e794cb1cdbfe5e961f9d9240d0ada960 (diff)
downloadsamba-147a6a8a7576f1de7bf50a26b51e82524c7ebd8c.tar.gz
samba-147a6a8a7576f1de7bf50a26b51e82524c7ebd8c.tar.xz
samba-147a6a8a7576f1de7bf50a26b51e82524c7ebd8c.zip
r5961: final round of compiler warning fixes based on feedback from Jason Mader
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util_str.c b/source/lib/util_str.c
index 86015b355ae..8acdab355a9 100644
--- a/source/lib/util_str.c
+++ b/source/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);