diff options
author | Thomas Kuehne <thomas@kuehne.cn> | 2021-12-11 17:56:39 +0100 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-04-05 17:11:01 -0700 |
commit | e075308dccafb6f813ba0a8646b73860a7447a01 (patch) | |
tree | a81b6b4611d21e75aa592596496cb0e2e3e365bc /Clock.c | |
parent | 96934f4472f10a1e5fcf53f6cbb9c88d743fa520 (diff) |
fix -Wmissing-field-initializers warning
fixes:
Clock.c:269:6: warning: missing initializer for field ‘extension’ of ‘SimpleClassPart’ [-Wmissing-field-initializers]
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'Clock.c')
-rw-r--r-- | Clock.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -265,7 +265,8 @@ ClockClassRec clockClassRec = { /* extension */ NULL }, { /* simple fields */ - /* change_sensitive */ XtInheritChangeSensitive + /* change_sensitive */ XtInheritChangeSensitive, + /* extension */ NULL }, { /* clock fields */ /* ignore */ 0 |