diff options
Diffstat (limited to 'src/post/planar/pp.c')
-rw-r--r-- | src/post/planar/pp.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/post/planar/pp.c b/src/post/planar/pp.c index 767d52f96..ab1fc3a9f 100644 --- a/src/post/planar/pp.c +++ b/src/post/planar/pp.c @@ -123,16 +123,17 @@ static char * get_help (void) { static char *help = NULL; if( !help ) { - asprintf(&help, "%s%s%s", - _("FFmpeg libpostprocess plugin.\n" - "\n" - "Parameters\n" - "\n"), - pp_help, - _("\n" - "* libpostprocess (C) Michael Niedermayer\n") - ); + help = _x_asprintf("%s%s%s", + _("FFmpeg libpostprocess plugin.\n" + "\n" + "Parameters\n" + "\n"), + pp_help, + _("\n" + "* libpostprocess (C) Michael Niedermayer\n") + ); } + return help; } |