summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4ec99bf)
raw | patch | inline | side by side (parent: 4ec99bf)
author | Junio C Hamano <junkio@cox.net> | |
Wed, 10 Aug 2005 04:25:46 +0000 (21:25 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 10 Aug 2005 05:28:19 +0000 (22:28 -0700) |
Inspired by patch from Timo Sirainen. Most of them are not
strictly necessary but making warnings less chatty would help
spot real bugs later.
Signed-off-by: Junio C Hamano <junkio@cox.net>
strictly necessary but making warnings less chatty would help
spot real bugs later.
Signed-off-by: Junio C Hamano <junkio@cox.net>
convert-cache.c | patch | blob | history | |
diff.c | patch | blob | history |
diff --git a/convert-cache.c b/convert-cache.c
index 8916a3692f89df0d96e8bbdf885f6b9eae6a1212..95f0302f7abef98b785bb26edd1b5e2785d609d8 100644 (file)
--- a/convert-cache.c
+++ b/convert-cache.c
struct entry *entry;
if (get_sha1_hex(buffer, sha1))
- die("expected sha1, got '%s'", buffer);
+ die("expected sha1, got '%s'", (char*) buffer);
entry = convert_entry(sha1);
memcpy(buffer, sha1_to_hex(entry->new_sha1), 40);
}
@@ -272,7 +272,7 @@ static void convert_commit(void *buffer, unsigned long size, unsigned char *resu
unsigned long orig_size = size;
if (memcmp(buffer, "tree ", 5))
- die("Bad commit '%s'", buffer);
+ die("Bad commit '%s'", (char*) buffer);
convert_ascii_sha1(buffer+5);
buffer += 46; /* "tree " + "hex sha1" + "\n" */
while (!memcmp(buffer, "parent ", 7)) {
index 9962fc359c04627803a042eb9d5bc02e293573ce..3e52fec18792056e230420bdeabff0f9dab5b35a 100644 (file)
--- a/diff.c
+++ b/diff.c
int complete_rewrite)
{
int i, next_at, cmd_size;
- const char *diff_cmd = "diff -L%s%s -L%s%s";
- const char *diff_arg = "%s %s||:"; /* "||:" is to return 0 */
+ const char *const diff_cmd = "diff -L%s%s -L%s%s";
+ const char *const diff_arg = "%s %s||:"; /* "||:" is to return 0 */
const char *input_name_sq[2];
const char *path0[2];
const char *path1[2];
char status[10];
if (line_termination) {
- const char *err = "path %s cannot be expressed without -z";
+ const char *const err =
+ "path %s cannot be expressed without -z";
if (strchr(p->one->path, line_termination) ||
strchr(p->one->path, inter_name_termination))
die(err, p->one->path);