From 61b0a431ca3c5dabfa5445355664f00e312c5299 Mon Sep 17 00:00:00 2001
From: Andre Noll <maan@systemlinux.org>
Date: Tue, 4 Sep 2007 22:07:22 +0200
Subject: [PATCH] audiod: Simplify two log messages.

Trivial cleanup.
---
 audiod.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/audiod.c b/audiod.c
index a1f1d621..397ef9a2 100644
--- a/audiod.c
+++ b/audiod.c
@@ -869,11 +869,11 @@ static int audiod_get_socket(void)
 	fd = create_local_socket(socket_name, &unix_addr,
 			S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IWOTH);
 	if (fd < 0) {
-		PARA_EMERG_LOG("%s", "can not connect to socket\n");
+		PARA_EMERG_LOG("can not connect to socket\n");
 		exit(EXIT_FAILURE); /* do not unlink socket */
 	}
 	if (listen(fd , 5) < 0) {
-		PARA_EMERG_LOG("%s", "can not listen on socket\n");
+		PARA_EMERG_LOG("can not listen on socket\n");
 		exit(EXIT_FAILURE); /* do not unlink socket */
 	}
 	mark_fd_nonblock(fd);
-- 
2.39.5