]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/libkern/url_encode.c
xnu-4903.270.47.tar.gz
[apple/xnu.git] / bsd / libkern / url_encode.c
index 0e3cf1562d806221189aeb315dc018fef0809665..353dbbdce600f5f870c1969b33710364c3d5d646 100644 (file)
@@ -73,7 +73,7 @@ url_decode(char *str)
                                /* overwrite the '%' with the new char, and bump the rest of the
                                 * string down a few characters */
                                *esc++ = c;
-                               str = memmove(esc, str, strlen(str)+1);
+                               str = memmove(esc, str, strlen(str) + 1);
                        }
                } else {
                        str++;