Get rid of nasty utf-8 characters in printout
[gitweb.git] / fetch-pack.c
index 3475ea380a29495269ac64fa9e4ff797b9b8687c..0979d3d9b69ce88c31555b3695505cb9a6aca28e 100644 (file)
@@ -68,7 +68,7 @@ static int get_remote_heads(int fd, int nr_match, char **match, unsigned char *r
                if (line[len-1] == '\n')
                        line[--len] = 0;
                if (len < 42 || get_sha1_hex(line, sha1))
-                       die("git-fetch-pack: protocol error - expected ref descriptor, got '%sยค'", line);
+                       die("git-fetch-pack: protocol error - expected ref descriptor, got '%s'", line);
                refname = line+41;
                if (nr_match && !path_match(refname, nr_match, match))
                        continue;