diff options
Diffstat (limited to 'src/frame.c')
-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); |