remove superfluous newlines in error messages
The error handling routines add a newline. Remove the duplicate ones in error messages. Signed-off-by: Pete Wyckoff <pw@padd.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
9768cafe68
commit
82247e9bd5
@ -30,7 +30,7 @@ void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t of
|
||||
temp = MapViewOfFileEx(hmap, FILE_MAP_COPY, h, l, length, start);
|
||||
|
||||
if (!CloseHandle(hmap))
|
||||
warning("unable to close file mapping handle\n");
|
||||
warning("unable to close file mapping handle");
|
||||
|
||||
return temp ? temp : MAP_FAILED;
|
||||
}
|
||||
|
Reference in New Issue
Block a user