Skip to content

Commit

Permalink
core.fsyncmethod: correctly camel-case warning message
Browse files Browse the repository at this point in the history
The warning for an unrecognized fsyncMethod was not
camel-cased.

Signed-off-by: Neeraj Singh <neerajsi@microsoft.com>
  • Loading branch information
neerajsi-msft committed Mar 29, 2022
1 parent 26be6ec commit 88c1f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.c
Expand Up @@ -1697,7 +1697,7 @@ static int git_default_core_config(const char *var, const char *value, void *cb)

if (!strcmp(var, "core.fsyncobjectfiles")) {
if (fsync_object_files < 0)
warning(_("core.fsyncobjectfiles is deprecated; use core.fsync instead"));
warning(_("core.fsyncObjectFiles is deprecated; use core.fsync instead"));
fsync_object_files = git_config_bool(var, value);
return 0;
}
Expand Down

0 comments on commit 88c1f84

Please sign in to comment.