config-parser: fix short_name type
This field is populated with chars, compared to chars and printed as a char. It should probably be a char. Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Daniel Stone <daniels@collabora.com>
This commit is contained in:
committed by
Daniel Stone
parent
dc4f9deaee
commit
58e056ab2d
@@ -64,7 +64,7 @@ enum weston_option_type {
|
|||||||
struct weston_option {
|
struct weston_option {
|
||||||
enum weston_option_type type;
|
enum weston_option_type type;
|
||||||
const char *name;
|
const char *name;
|
||||||
int short_name;
|
char short_name;
|
||||||
void *data;
|
void *data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user