To silence these warnings: data_blob.c: In function ‘data_blob_hex_string_lower’: data_blob.c:155:16: warning: comparison between signed and unsigned integer expressions data_blob.c: In function ‘data_blob_hex_string_upper’: data_blob.c:172:16: warning: comparison between signed and unsigned integer expressions Signed-off-by: Jeff Layton <jlayton@xxxxxxxxx> --- data_blob.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data_blob.c b/data_blob.c index 2384661..16c78ce 100644 --- a/data_blob.c +++ b/data_blob.c @@ -141,7 +141,7 @@ print the data_blob as hex string **/ _PUBLIC_ char *data_blob_hex_string_lower(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob) { - int i; + unsigned int i; char *hex_string; hex_string = talloc_array(mem_ctx, char, (blob->length*2)+1); @@ -161,7 +161,7 @@ _PUBLIC_ char *data_blob_hex_string_lower(TALLOC_CTX *mem_ctx, const DATA_BLOB * _PUBLIC_ char *data_blob_hex_string_upper(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob) { - int i; + unsigned int i; char *hex_string; hex_string = talloc_array(mem_ctx, char, (blob->length*2)+1); -- 1.7.1.1 -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html