From b66b3b2e28ae3235bbb6f7c1853b6bc2621a0c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Thu, 18 Mar 2021 17:25:32 -0400 Subject: [PATCH] Fix bug in last commit (extra parameter) --- src/xpdev/xpbeep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpdev/xpbeep.c b/src/xpdev/xpbeep.c index 574fc9ac2b..cf97ccec85 100644 --- a/src/xpdev/xpbeep.c +++ b/src/xpdev/xpbeep.c @@ -417,7 +417,7 @@ DLLCALL xptone_open_locked(void) handle_type=SOUND_DEVICE_PULSEAUDIO; handle_rc++; pthread_mutex_unlock(&handle_mutex); - xptone(0, 1, WAVE_SHAPE_SQUARE, FALSE); + xptone(0, 1, WAVE_SHAPE_SQUARE); pthread_mutex_lock(&handle_mutex); if (pulseaudio_device_open_failed) { fprintf(stderr, "Pulse broke\n"); -- GitLab