Clean up a redundant assignment in libprofile
authorGreg Hudson <ghudson@mit.edu>
Sun, 13 May 2012 19:38:06 +0000 (15:38 -0400)
committerGreg Hudson <ghudson@mit.edu>
Sun, 13 May 2012 19:38:06 +0000 (15:38 -0400)
src/util/profile/prof_parse.c

index 77c0adbd6122ef1e518b81e1678818a878fe1339..bcb88d2778973f23ccb9d18f8f2c2c3222ba1ba4 100644 (file)
@@ -47,8 +47,6 @@ static void parse_quoted_string(char *str)
 {
     char *to, *from;
 
-    to = from = str;
-
     for (to = from = str; *from && *from != '"'; to++, from++) {
         if (*from == '\\') {
             from++;