diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-21 23:48:31 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-21 23:48:31 -0800 |
commit | ebc12ce5bfcf6401c8fcc7e4935bc50142a65db4 (patch) | |
tree | 4bd8cf5c083d53b8213f6cdb1fa7312c09030e2b /config.c | |
parent | git-pack-redundant: speed and memory usage improvements (diff) | |
parent | \n usage in stderr output (diff) | |
download | tgif-ebc12ce5bfcf6401c8fcc7e4935bc50142a65db4.tar.xz |
Merge branch 'fixes'
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -487,7 +487,7 @@ int git_config_set_multivar(const char* key, const char* value, store.value_regex = (regex_t*)malloc(sizeof(regex_t)); if (regcomp(store.value_regex, value_regex, REG_EXTENDED)) { - fprintf(stderr, "Invalid pattern: %s", + fprintf(stderr, "Invalid pattern: %s\n", value_regex); free(store.value_regex); return 6; |