From a030f162722d5172be86eb6691d61baffe981b54 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 27 Aug 2009 03:55:23 +0200 Subject: dso: quieten gcc a bit --- src/dso.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dso.c b/src/dso.c index 5dc4823..c9c2a15 100644 --- a/src/dso.c +++ b/src/dso.c @@ -73,7 +73,7 @@ static int ca_error_from_lt_error(int code) { #endif }; - if (code < 0 || code >= CA_ELEMENTSOF(table)) + if (code < 0 || code >= (int) CA_ELEMENTSOF(table)) return CA_ERROR_INTERNAL; return table[code]; -- cgit