]> git.proxmox.com Git - mirror_lxc.git/commitdiff
tests: cleanup config_jump_table.c
author2xsec <dh48.jeong@samsung.com>
Tue, 3 Jul 2018 09:12:31 +0000 (18:12 +0900)
committerChristian Brauner <christian.brauner@ubuntu.com>
Tue, 3 Jul 2018 10:44:34 +0000 (12:44 +0200)
Signed-off-by: 2xsec <dh48.jeong@samsung.com>
src/tests/config_jump_table.c

index 8e86c48e4b83179f8cd85f82859a5f0d3bab2b05..3f08fb9427aca293af3feb67e977b846bb0bd5ce 100644 (file)
@@ -54,6 +54,7 @@ int main(int argc, char *argv[])
        for (key = strtok_r(keys, "\n", &saveptr); key != NULL;
             key = strtok_r(NULL, "\n", &saveptr)) {
                struct lxc_config_t *config;
+
                config = lxc_get_config(key);
                if (!config) {
                        lxc_error("configuration key \"%s\" not implemented in "
@@ -90,5 +91,4 @@ on_error:
        free(keys);
 
        exit(ret);
-
 }