From 86eefc1a3a3419bb41b2acab521a476db0d2a7ce Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Thu, 3 Jan 2013 18:48:53 -0300 Subject: Fix space between control structure and open parens Signed-off-by: Gerardo Exequiel Pozzi Signed-off-by: Allan McRae --- lib/libalpm/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/util.c') diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index 9effd181..c88326f2 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -858,7 +858,7 @@ static char *hex_representation(unsigned char *bytes, size_t size) MALLOC(str, 2 * size + 1, return NULL); - for (i = 0; i < size; i++) { + for(i = 0; i < size; i++) { str[2 * i] = hex_digits[bytes[i] >> 4]; str[2 * i + 1] = hex_digits[bytes[i] & 0x0f]; } -- cgit v1.2.3-24-g4f1b