]> git.ipfire.org Git - thirdparty/git.git/commit - usage.c
usage: add NORETURN to BUG() function definitions
authorRamsay Jones <ramsay@ramsayjones.plus.com>
Sun, 21 May 2017 22:25:39 +0000 (23:25 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 22 May 2017 02:00:53 +0000 (11:00 +0900)
commit3d7dd2d3b6ccc8903a37cffe3a2f39cf1be21c86
tree3b3c62f332aaa3fc34cbc8dd85ea2c47d39ee743
parent25cd291963e4b0fae0eabe7fe02be693702d79bb
usage: add NORETURN to BUG() function definitions

Commit d8193743e0 ("usage.c: add BUG() function", 12-05-2017) added the
BUG() functions and macros as a replacement for calls to die("BUG: ..").
The use of NORETURN on the declarations (in git-compat-util.h) and the
lack of NORETURN on the function definitions, however, leads sparse to
complain thus:

      SP usage.c
  usage.c:220:6: error: symbol 'BUG_fl' redeclared with different type
  (originally declared at git-compat-util.h:1074) - different modifiers

In order to suppress the sparse error, add the NORETURN to the function
definitions.

Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
usage.c