Skip to content
  • Ævar Arnfjörð Bjarmason's avatar
    Appease Sun Studio by renaming "tmpfile" · ab1900a3
    Ævar Arnfjörð Bjarmason authored and Junio C Hamano's avatar Junio C Hamano committed
    
    
    On Solaris the system headers define the "tmpfile" name, which'll
    cause Git compiled with Sun Studio 12 Update 1 to whine about us
    redefining the name:
    
        "pack-write.c", line 76: warning: name redefined by pragma redefine_extname declared static: tmpfile     (E_PRAGMA_REDEFINE_STATIC)
        "sha1_file.c", line 2455: warning: name redefined by pragma redefine_extname declared static: tmpfile    (E_PRAGMA_REDEFINE_STATIC)
        "fast-import.c", line 858: warning: name redefined by pragma redefine_extname declared static: tmpfile   (E_PRAGMA_REDEFINE_STATIC)
        "builtin/index-pack.c", line 175: warning: name redefined by pragma redefine_extname declared static: tmpfile    (E_PRAGMA_REDEFINE_STATIC)
    
    Just renaming the "tmpfile" variable to "tmp_file" in the relevant
    places is the easiest way to fix this.
    
    Signed-off-by: default avatarÆvar Arnfjörð Bjarmason <avarab@gmail.com>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    ab1900a3