From 7ffd18fce1eef2670661c2e7fd0cb3ef0b8b7fb7 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Thu, 10 Oct 2013 22:49:43 +0200 Subject: path-utils test: rename mingw_path function to print_path mingw_path was introduced in abd4284 to output a mangled path as it is passed as an argument to main(). But the name is misleading because mangling does not come from MinGW, but from MSYS [1]. As abd4284 does not introduce any MSYS or MinGW specific code but just prints out argv[2] as it is passed to main(), give the function the more generic and less confusing name "print_path". [1] http://www.mingw.org/wiki/Posix_path_conversion Signed-off-by: Sebastian Schuberth Signed-off-by: Jonathan Nieder --- test-path-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test-path-utils.c') diff --git a/test-path-utils.c b/test-path-utils.c index bb975e4d3e..3dd3744a57 100644 --- a/test-path-utils.c +++ b/test-path-utils.c @@ -116,7 +116,7 @@ int main(int argc, char **argv) return 0; } - if (argc == 3 && !strcmp(argv[1], "mingw_path")) { + if (argc == 3 && !strcmp(argv[1], "print_path")) { puts(argv[2]); return 0; } -- cgit v1.2.1