From 7a1b8ef999ec6d0c532a0efc1e87af1b56ce76da Mon Sep 17 00:00:00 2001 From: kientzle Date: Sat, 29 Jun 2013 15:51:27 +0000 Subject: Fix -Wunsequenced warning. Submitted by: dt71@gmx.com --- lib/libfetch/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libfetch') diff --git a/lib/libfetch/fetch.c b/lib/libfetch/fetch.c index a081520..8d92bbc 100644 --- a/lib/libfetch/fetch.c +++ b/lib/libfetch/fetch.c @@ -376,7 +376,7 @@ fetchParseURL(const char *URL) /* password */ if (*q == ':') - q = fetch_pctdecode(u->pwd, ++q, URL_PWDLEN); + q = fetch_pctdecode(u->pwd, q + 1, URL_PWDLEN); p++; } else { -- cgit v1.1