diff options
Diffstat (limited to 'gettext-tools/src/format-csharp.c')
-rw-r--r-- | gettext-tools/src/format-csharp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gettext-tools/src/format-csharp.c b/gettext-tools/src/format-csharp.c index 2fd7593..e72506e 100644 --- a/gettext-tools/src/format-csharp.c +++ b/gettext-tools/src/format-csharp.c @@ -156,7 +156,7 @@ format_parse (const char *format, bool translated, char **invalid_reason) } } - result = (struct spec *) xmalloc (sizeof (struct spec)); + result = XMALLOC (struct spec); *result = spec; return result; } |