mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-05 07:38:22 +02:00
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:
parent
dc4f9deaee
commit
58e056ab2d
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ enum weston_option_type {
|
|||
struct weston_option {
|
||||
enum weston_option_type type;
|
||||
const char *name;
|
||||
int short_name;
|
||||
char short_name;
|
||||
void *data;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue