* xlat.h (XLAT_END): Remove.
* process.c (struct_user_offsets_data): Replace XLAT_END with a zero
xlat_data entry.
Complements: v5.3~105 "Add xlat description structure"
static const struct xlat_data struct_user_offsets_data[] = {
#include "userent.h"
- XLAT_END
+ { 0, 0 }
};
static const struct xlat struct_user_offsets = {
# define XLAT_PAIR(val, str) { (unsigned)(val), str }
# define XLAT_TYPE(type, val) { (type)(val), #val }
# define XLAT_TYPE_PAIR(type, val, str) { (type)(val), str }
-# define XLAT_END { 0, 0 }
#endif /* !STRACE_XLAT_H */