Skip to content

Commit

Permalink
libflux: fix gcc-4.8.2 compile failure found by Mark
Browse files Browse the repository at this point in the history
This was mentioned in issue flux-framework#14
  • Loading branch information
garlick committed Oct 2, 2014
1 parent e88efcb commit d28a306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/libflux/fconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void flux_config_save (const char *path, zconfig_t *z)
if (!path)
path = default_path = flux_config_default_path (true);
if (zconfig_save (z, path) < 0)
err_exit (path);
err_exit ("%s", path);
if (default_path)
free (default_path);
}
Expand Down

0 comments on commit d28a306

Please sign in to comment.