mirror of
https://git.zx2c4.com/cgit/
synced 2024-11-04 06:00:44 +00:00
Remove a few compiler warnings
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
6df9c7028a
commit
0835ffefb8
3
shared.c
3
shared.c
@ -308,7 +308,8 @@ static int load_mmfile(mmfile_t *file, const unsigned char *sha1)
|
|||||||
file->ptr = (char *)"";
|
file->ptr = (char *)"";
|
||||||
file->size = 0;
|
file->size = 0;
|
||||||
} else {
|
} else {
|
||||||
file->ptr = read_sha1_file(sha1, &type, &file->size);
|
file->ptr = read_sha1_file(sha1, &type,
|
||||||
|
(unsigned long *)&file->size);
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ int header = 0;
|
|||||||
static void print_object(const unsigned char *sha1, char *path)
|
static void print_object(const unsigned char *sha1, char *path)
|
||||||
{
|
{
|
||||||
enum object_type type;
|
enum object_type type;
|
||||||
unsigned char *buf;
|
char *buf;
|
||||||
unsigned long size, lineno, start, idx;
|
unsigned long size, lineno, start, idx;
|
||||||
const char *linefmt = "<tr><td class='no'><a name='%1$d'>%1$d</a></td><td class='txt'>";
|
const char *linefmt = "<tr><td class='no'><a name='%1$d'>%1$d</a></td><td class='txt'>";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user