aboutsummaryrefslogtreecommitdiffstats
path: root/src/linux
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-10-15 21:01:47 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-10-15 21:05:08 -0400
commitcbd06f1433d6838ff0953ec63677bafb2e1e8526 (patch)
tree52d8f26eff00108deea33cfb3516282a5c80fb29 /src/linux
parent1c59a0d30a0ff986f020a89de9753c503c65f592 (diff)
downloadkutter-cbd06f1433d6838ff0953ec63677bafb2e1e8526.tar.gz
kutter-cbd06f1433d6838ff0953ec63677bafb2e1e8526.tar.xz
kutter-cbd06f1433d6838ff0953ec63677bafb2e1e8526.zip
linux: Fix typo causing config_reset to not fully restart
A typo in the code caused the wrong config_reset code to be run. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/linux')
-rw-r--r--src/linux/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/main.c b/src/linux/main.c
index 2be96535..f351ec1f 100644
--- a/src/linux/main.c
+++ b/src/linux/main.c
@@ -49,7 +49,7 @@ command_config_reset(uint32_t *args)
int ret = execv(orig_argv[0], orig_argv);
report_errno("execv", ret);
}
-DECL_COMMAND_FLAGS(config_reset, HF_IN_SHUTDOWN, "config_reset");
+DECL_COMMAND_FLAGS(command_config_reset, HF_IN_SHUTDOWN, "config_reset");
/****************************************************************