compat/win32mmap.c: Fix some sparse warnings
commit15b7f601fc976f7a112035fb0e91869eabe61c26
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>
Sat, 27 Apr 2013 19:18:03 +0000 (27 20:18 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 28 Apr 2013 19:27:08 +0000 (28 12:27 -0700)
treea3d6c7db8298a827c645ea7f32eaf5015f5a99ef
parent1c31596a4b029e51cef1c520f32a3ecfbdea3c0a
compat/win32mmap.c: Fix some sparse warnings

Sparse issues two 'Using plain integer as NULL pointer' warnings
against the call to the CreateFileMapping() function. The warnings
relate to the second and sixth parameters, which both have pointer
type. In order to suppress the warnings, we simply pass the NULL
pointer, rather than '0', to those parameters in the function call.

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
compat/win32mmap.c