From e698addf8824c78db8fc201071f69effc616af42 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 25 Feb 2011 15:11:22 +0100 Subject: updated for version 7.3.128 Problem: Another compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf(). --- src/mark.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/mark.c') diff --git a/src/mark.c b/src/mark.c index 2669cb14c..f8b4c576f 100644 --- a/src/mark.c +++ b/src/mark.c @@ -1750,7 +1750,10 @@ copy_viminfo_marks(virp, fp_out, count, eof, flags) { if (line[1] != NUL) { - sscanf((char *)line + 2, "%ld %u", &pos.lnum, &pos.col); + unsigned u; + + sscanf((char *)line + 2, "%ld %u", &pos.lnum, &u); + pos.col = u; switch (line[1]) { case '"': curbuf->b_last_cursor = pos; break; -- cgit v1.2.1