diff options
author | Roy Marples <roy@marples.name> | 2008-01-14 14:41:02 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-14 14:41:02 +0000 |
commit | 62d793f7ff4c6f5c9f79ca0b47bce338dc4b5214 (patch) | |
tree | 784bfaa86fc5614915e6749088c62550edc01968 /src/rc | |
parent | e0687578100379053afba8f7f69dc41c77d092c8 (diff) |
Fix is_older_than.
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/rc-applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/rc-applets.c b/src/rc/rc-applets.c index 59fff72b..1a38f971 100644 --- a/src/rc/rc-applets.c +++ b/src/rc/rc-applets.c @@ -383,7 +383,7 @@ void run_applets (int argc, char **argv) strcmp (applet, "is_older_than") == 0) { bool match = false; - int i = 1; + int i = 2; if (argc < 3) exit (EXIT_FAILURE); |