aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fs/fs_uri.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fs/fs_uri.c b/src/fs/fs_uri.c
index 98e9903c3..fa6d411db 100644
--- a/src/fs/fs_uri.c
+++ b/src/fs/fs_uri.c
@@ -217,7 +217,8 @@ percent_decode_keyword (const char *in, char **emsg)
217 if (1 != SSCANF (&out[rpos + 1], "%2X", &hx)) 217 if (1 != SSCANF (&out[rpos + 1], "%2X", &hx))
218 { 218 {
219 GNUNET_free (out); 219 GNUNET_free (out);
220 *emsg = GNUNET_strdup (_("`%' must be followed by HEX number")); 220 *emsg = GNUNET_strdup (_(/* xgettext:no-c-format */
221 "`%' must be followed by HEX number"));
221 return NULL; 222 return NULL;
222 } 223 }
223 rpos += 3; 224 rpos += 3;