mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
glcpp: Silence GCC warning
glcpp/glcpp.c:124:1: warning: ‘static’ is not at beginning of declaration [-Wold-style-declaration] const static struct option ^ Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
2ead74888a
commit
147afac80c
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ enum {
|
|||
DISABLE_LINE_CONTINUATIONS_OPT = CHAR_MAX + 1
|
||||
};
|
||||
|
||||
const static struct option
|
||||
static const struct option
|
||||
long_options[] = {
|
||||
{"disable-line-continuations", no_argument, 0, DISABLE_LINE_CONTINUATIONS_OPT },
|
||||
{"debug", no_argument, 0, 'd'},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue