projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eeba86d
)
Clean up a redundant assignment in libprofile
author
Greg Hudson
<ghudson@mit.edu>
Sun, 13 May 2012 19:38:06 +0000
(15:38 -0400)
committer
Greg Hudson
<ghudson@mit.edu>
Sun, 13 May 2012 19:38:06 +0000
(15:38 -0400)
src/util/profile/prof_parse.c
patch
|
blob
|
history
diff --git
a/src/util/profile/prof_parse.c
b/src/util/profile/prof_parse.c
index 77c0adbd6122ef1e518b81e1678818a878fe1339..bcb88d2778973f23ccb9d18f8f2c2c3222ba1ba4 100644
(file)
--- a/
src/util/profile/prof_parse.c
+++ b/
src/util/profile/prof_parse.c
@@
-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++;