diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2015-04-18 22:38:13 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2015-04-18 22:38:13 +0100 |
commit | 9f8f87e375175536a972feab79c2ff8901c47f8e (patch) | |
tree | d4bb7fbd1d5c7f0c144f09d8d5e04e3249b6f791 | |
parent | 4eac277367d70e6126f53886f99043409a80195f (diff) |
exit-status: Fix "NOTINSSTALLED" typo
-rw-r--r-- | src/shared/exit-status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/exit-status.c b/src/shared/exit-status.c index 57022c5b8a..9e14eb8bf5 100644 --- a/src/shared/exit-status.c +++ b/src/shared/exit-status.c @@ -166,7 +166,7 @@ const char* exit_status_to_string(ExitStatus status, ExitStatusLevel level) { return "NOPERMISSION"; case EXIT_NOTINSTALLED: - return "NOTINSSTALLED"; + return "NOTINSTALLED"; case EXIT_NOTCONFIGURED: return "NOTCONFIGURED"; |