summaryrefslogtreecommitdiffstats
path: root/src/pulse/xmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulse/xmalloc.c')
-rw-r--r--src/pulse/xmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulse/xmalloc.c b/src/pulse/xmalloc.c
index 46871aeb..36755166 100644
--- a/src/pulse/xmalloc.c
+++ b/src/pulse/xmalloc.c
@@ -49,7 +49,7 @@ static void oom(void) PA_GCC_NORETURN;
* exits */
static void oom(void) {
static const char e[] = "Not enough memory\n";
- pa_loop_write(STDERR_FILENO, e, sizeof(e)-1);
+ pa_loop_write(STDERR_FILENO, e, sizeof(e)-1, NULL);
#ifdef SIGQUIT
raise(SIGQUIT);
#endif