summaryrefslogtreecommitdiffstats
path: root/login-utils/runuser.c
diff options
context:
space:
mode:
authorKarel Zak2012-11-01 13:03:28 +0100
committerKarel Zak2012-11-01 13:03:28 +0100
commit47b014f776b402eff91d7002eadf8923fc4e3eb2 (patch)
tree169c813253eddde7e126241073563a3da1e65194 /login-utils/runuser.c
parentbuild-sys: move runuser(1) to sbin dir (diff)
downloadkernel-qcow2-util-linux-47b014f776b402eff91d7002eadf8923fc4e3eb2.tar.gz
kernel-qcow2-util-linux-47b014f776b402eff91d7002eadf8923fc4e3eb2.tar.xz
kernel-qcow2-util-linux-47b014f776b402eff91d7002eadf8923fc4e3eb2.zip
su: fix stupid typo
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'login-utils/runuser.c')
-rw-r--r--login-utils/runuser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/login-utils/runuser.c b/login-utils/runuser.c
index d761a14fc..d4f37f487 100644
--- a/login-utils/runuser.c
+++ b/login-utils/runuser.c
@@ -1,7 +1,7 @@
#include "su-common.h"
-int main(int argv, char **argc)
+int main(int argc, char **argv)
{
- return su_main(argv, argc, RUNUSER_MODE);
+ return su_main(argc, argv, RUNUSER_MODE);
}