sha1_file: move comment about return value where it belongs
commit3fc0dca9ceb653798377591018c81324f4d84032
authorChristian Couder <chriscool@tuxfamily.org>
Sat, 26 Oct 2013 22:34:30 +0000 (27 00:34 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 28 Oct 2013 16:07:01 +0000 (28 09:07 -0700)
treecf4a8eb355f2a3bb4c96f5cf5b39e3c50ab35edc
parentca462804c68b5ac0936242d4938fc9273b00180d
sha1_file: move comment about return value where it belongs

Commit 5b0864070 (sha1_object_info_extended: make type calculation
optional, Jul 12 2013) changed the return value of the
sha1_object_info_extended function to 0/-1 for success/error.

Previously this function returned the object type for success or
-1 for error. But unfortunately the above commit forgot to change
or move the comment above this function that says "returns enum
object_type or negative".

To fix this inconsistency, let's move the comment above the
sha1_object_info function where it is still true.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_file.c