diff options
Diffstat (limited to 'toys/lsb/umount.c')
-rw-r--r-- | toys/lsb/umount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/lsb/umount.c b/toys/lsb/umount.c index bcc1fff1..cc40f144 100644 --- a/toys/lsb/umount.c +++ b/toys/lsb/umount.c @@ -57,7 +57,7 @@ void comma_collate(char **old, char *new) char *comma = ","; if (atold[strlen(atold)-1] == ',') comma = ""; - temp = xmsprintf("%s%s%s", atold, comma, new); + temp = xmprintf("%s%s%s", atold, comma, new); } else temp = xstrdup(new); free (atold); *old = temp; |