summaryrefslogtreecommitdiff
path: root/zlib.c
AgeCommit message (Collapse)AuthorFilesLines
2011-06-10zlib wrapper: refactor error message formatterLibravatar Junio C Hamano1-35/+38
Before refactoring the main part of the wrappers, first move the logic to convert error status that come back from zlib to string to a helper function. Signed-off-by: Junio C Hamano <gitster@pobox.com>
2010-11-10wrapper: give zlib wrappers their own translation unitLibravatar Jonathan Nieder1-0/+61
Programs using xmalloc() but not git_inflate() require -lz on the linker command line because git_inflate() is in the same translation unit as xmalloc(). Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>