diff options
author | Jared Hance <jaredhance@gmail.com> | 2012-03-02 21:31:13 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-02 23:31:22 -0800 |
commit | 59ca173d034d467ac899684eaf0638b1a5a83c66 (patch) | |
tree | c526554bd1ddea8459c8cc12a39adcd5f4333478 /cache.h | |
parent | 70eb130768d17c33b9efbf60d7953cf6a57daecb (diff) | |
download | git-jh/trace-use-startup-info.tar.gz |
Use startup_info->prefix rather than prefix.jh/trace-use-startup-info
In trace_repo_setup, prefix is passed in as startup_info->prefix. But, as
indicated but a FIXME comment, trace_repo_setup has access to
startup_info. The prefix parameter has therefor been eliminated.
Signed-off-by: Jared Hance <jaredhance@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1201,7 +1201,7 @@ extern void trace_printf(const char *format, ...); extern void trace_vprintf(const char *key, const char *format, va_list ap); __attribute__((format (printf, 2, 3))) extern void trace_argv_printf(const char **argv, const char *format, ...); -extern void trace_repo_setup(const char *prefix); +extern void trace_repo_setup(void); extern int trace_want(const char *key); extern void trace_strbuf(const char *key, const struct strbuf *buf); |