diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-29 12:12:42 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-29 12:12:42 +0800 |
commit | f2d683ced7a847e978a3763f91f63b943b56bbee (patch) | |
tree | 35fe35a8467db6c897456e4a00ab045e5a0f6acc | |
parent | 136f298c2ee168407f96f76a2da8de012ddf393f (diff) | |
download | gsoc2013-evolution-f2d683ced7a847e978a3763f91f63b943b56bbee.tar gsoc2013-evolution-f2d683ced7a847e978a3763f91f63b943b56bbee.tar.gz gsoc2013-evolution-f2d683ced7a847e978a3763f91f63b943b56bbee.tar.bz2 gsoc2013-evolution-f2d683ced7a847e978a3763f91f63b943b56bbee.tar.lz gsoc2013-evolution-f2d683ced7a847e978a3763f91f63b943b56bbee.tar.xz gsoc2013-evolution-f2d683ced7a847e978a3763f91f63b943b56bbee.tar.zst gsoc2013-evolution-f2d683ced7a847e978a3763f91f63b943b56bbee.zip |
Fix the fix.
svn path=/trunk/; revision=10589
-rw-r--r-- | shell/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/main.c b/shell/main.c index 6329c26d38..c8e802b985 100644 --- a/shell/main.c +++ b/shell/main.c @@ -257,7 +257,7 @@ main (int argc, char **argv) uri_list = NULL; args = poptGetArgs (popt_context); - if (args == NULL) { + if (args != NULL) { const char **p; for (p = args; *p != NULL; p++) |