From: Junio C Hamano Date: Sun, 17 Apr 2005 16:53:35 +0000 (-0700) Subject: [PATCH] show-diff.c: do not include unused header file X-Git-Tag: v0.99~855 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=8f41523fc1a8cd127ff39fa111b3b5bb5105cc84;p=git.git [PATCH] show-diff.c: do not include unused header file This is my bad. I added #include to the file, which I ended up not using and failed to remove it. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- diff --git a/show-diff.c b/show-diff.c index 0af2f105..8a66e59c 100644 --- a/show-diff.c +++ b/show-diff.c @@ -4,7 +4,6 @@ * Copyright (C) Linus Torvalds, 2005 */ #include "cache.h" -#include static char *diff_cmd = "diff -L '%s' -u -N - '%s'";