summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2005-01-17 23:26:05 +0000
committersabetts <sabetts>2005-01-17 23:26:05 +0000
commit3177a97f9f4456a47be2df39c1abee72f0f8f71c (patch)
treee5f886878ed665c2731823e4468c1fcdcaa9f4db /src/frame.c
parent7232aa04aea8aa13c2973b637d3d0bb875065ff3 (diff)
downloadratpoison-3177a97f9f4456a47be2df39c1abee72f0f8f71c.zip
(frame_read): remove space in "(frame " string.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c2
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);