diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-10 13:26:39 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-11 14:35:34 -0800 |
commit | 77b1efa1c83ad64d49d1e9c085d2a496580ce6f9 (patch) | |
tree | c121541999a472231178f6d9244266a5e953341d /xkbpath.c | |
parent | 64761ee9424f755b84ab0ce02d13eda32d215a14 (diff) |
Use C99 struct initializers
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xkbpath.c')
-rw-r--r-- | xkbpath.c | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -324,11 +324,13 @@ XkbAddFileToCache(char *name, unsigned type, char *path, void *data) entry = uTypedAlloc(FileCacheEntry); if (entry != NULL) { - entry->name = name; - entry->type = type; - entry->path = path; - entry->data = data; - entry->next = fileCache; + *entry = (FileCacheEntry) { + .name = name, + .type = type, + .path = path, + .data = data, + .next = fileCache + }; fileCache = entry; } return NULL; |