diff options
Diffstat (limited to 'run-command.c')
-rw-r--r-- | run-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-command.c b/run-command.c index a47699966c..c4a62aa0e8 100644 --- a/run-command.c +++ b/run-command.c @@ -794,9 +794,9 @@ int finish_async(struct async *async) #endif } -char *find_hook(const char *name) +const char *find_hook(const char *name) { - char *path = git_path("hooks/%s", name); + const char *path = git_path("hooks/%s", name); if (access(path, X_OK) < 0) path = NULL; |