From: Stefan Beller Date: Tue, 10 Apr 2018 21:26:16 +0000 (-0700) Subject: write_or_die.c: rename to use dashes in file name X-Git-Tag: v2.18.0-rc0~109^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa2656f1da2c01e139423d98b7cbc52cbeadb52c;p=git write_or_die.c: rename to use dashes in file name This is more consistent with the project style. The majority of Git's source files use dashes in preference to underscores in their file names. Signed-off-by: Stefan Beller --- diff --git a/Makefile b/Makefile index f181687250..f83b796831 100644 --- a/Makefile +++ b/Makefile @@ -936,7 +936,7 @@ LIB_OBJS += walker.o LIB_OBJS += wildmatch.o LIB_OBJS += worktree.o LIB_OBJS += wrapper.o -LIB_OBJS += write_or_die.o +LIB_OBJS += write-or-die.o LIB_OBJS += ws.o LIB_OBJS += wt-status.o LIB_OBJS += xdiff-interface.o diff --git a/write_or_die.c b/write-or-die.c similarity index 100% rename from write_or_die.c rename to write-or-die.c