diff options
Diffstat (limited to 'src/volume.c')
-rw-r--r-- | src/volume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/volume.c b/src/volume.c index ea9d1dd71..cd09966cc 100644 --- a/src/volume.c +++ b/src/volume.c @@ -112,7 +112,7 @@ static int prepOssMixer(char *device) } for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) { - dup = strdup(labels[i]); + dup = xstrdup(labels[i]); /* eliminate spaces at the end */ j = strlen(dup) - 1; while (j >= 0 && dup[j] == ' ') |