Merge pull request #1924 from nbraud/spelling

swaymsg: Fix spelling in error message
This commit is contained in:
Drew DeVault 2018-05-05 15:00:40 -04:00 committed by GitHub
commit 967b14c227
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ static void pretty_print_cmd(json_object *r) {
if (!success(r, true)) {
json_object *error;
if (!json_object_object_get_ex(r, "error", &error)) {
printf("An unknkown error occured");
printf("An unknkown error occurred");
} else {
printf("Error: %s\n", json_object_get_string(error));
}