]> git.sur5r.net Git - i3/i3/commitdiff
Parsing workspace name so if the first part is a number, the workspace will get this...
authorSimon Kampe <simon.kampe@gmail.com>
Thu, 7 Apr 2011 10:58:45 +0000 (12:58 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 3 Aug 2011 22:30:07 +0000 (00:30 +0200)
src/workspace.c

index 2fe9630483029de25500239f1e6342f97b27efa0..d3d2a8e2e871d80cd1f0632f2fd4da7a809addec 100644 (file)
@@ -49,12 +49,11 @@ Con *workspace_get(const char *num, bool *created) {
         workspace->name = sstrdup(num);
         /* We set ->num to the number if this workspace’s name consists only of
          * a positive number. Otherwise it’s a named ws and num will be -1. */
-        char *end;
-        long parsed_num = strtol(num, &end, 10);
+
+        long parsed_num = strtol(num, NULL, 10);
         if (parsed_num == LONG_MIN ||
             parsed_num == LONG_MAX ||
-            parsed_num < 0 ||
-            (end && *end != '\0'))
+            parsed_num <= 0)
             workspace->num = -1;
         else workspace->num = parsed_num;
         LOG("num = %d\n", workspace->num);