diff options
author | marco <marco@conformal.com> | 2011-09-26 09:29:28 -0500 |
---|---|---|
committer | marco <marco@conformal.com> | 2011-09-26 09:29:28 -0500 |
commit | 53c9d739d7a3b4c0742c269668d98a871a5fb6f6 (patch) | |
tree | 506c85eb774661b7133c73a1ac9f53147ea666dc | |
parent | bac522a3601f0751b835e5048f383a020c97a698 (diff) | |
download | xombrero-53c9d739d7a3b4c0742c269668d98a871a5fb6f6.tar.gz |
remove a dead store from Aleksander Balicki <balicki.aleksander@gmail.com>
-rw-r--r-- | xxxterm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xxxterm.c b/xxxterm.c index e16c822..e362f85 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -7254,7 +7254,7 @@ int qmarks_load(void) { char file[PATH_MAX]; - char *line = NULL, *p, mark; + char *line = NULL, *p; int index, i; FILE *f; size_t linelen; @@ -7283,7 +7283,6 @@ qmarks_load(void) break; } - mark = *p; p = strtok(NULL, " \t"); if (qmarks[index] != NULL) g_free(qmarks[index]); |