atomicio.c: In function 'atomicio': atomicio.c:48: warning: comparison between signed and unsigned integer expressions Signed-off-by: Steve Dickson <steved@xxxxxxxxxx> --- utils/idmapd/atomicio.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/utils/idmapd/atomicio.c b/utils/idmapd/atomicio.c index 05e7147..1fb1ff9 100644 --- a/utils/idmapd/atomicio.c +++ b/utils/idmapd/atomicio.c @@ -43,7 +43,8 @@ atomicio( size_t n) { char *s = _s; - ssize_t res, pos = 0; + ssize_t res; + size_t pos = 0; while (n > pos) { res = (f) (fd, s + pos, n - pos); -- 1.7.0.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html