diff options
author | sabetts <sabetts> | 2005-01-17 23:26:05 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2005-01-17 23:26:05 +0000 |
commit | 3177a97f9f4456a47be2df39c1abee72f0f8f71c (patch) | |
tree | e5f886878ed665c2731823e4468c1fcdcaa9f4db /src | |
parent | 7232aa04aea8aa13c2973b637d3d0bb875065ff3 (diff) | |
download | ratpoison-3177a97f9f4456a47be2df39c1abee72f0f8f71c.zip |
(frame_read): remove space in "(frame " string.
Diffstat (limited to 'src')
-rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index f2cd8a2..2d6c4f3 100644 --- a/src/frame.c +++ b/src/frame.c @@ -208,7 +208,7 @@ frame_read (char *str) tmp = strtok (dup, " "); /* Verify it starts with '(frame ' */ - if (strcmp(tmp, "(frame ")) + if (strcmp(tmp, "(frame")) { PRINT_DEBUG(("Doesn't start with '(frame '\n")); free (dup); |