From 5438acd044ab051c210d8f36a82ff35086bfde03 Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Wed, 3 Dec 2003 23:32:47 +0000 Subject: [PATCH] Fix from Michael Wardle in bell error message [originally from svn r3619] --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 9c77861f..823ce3fc 100644 --- a/window.c +++ b/window.c @@ -4436,7 +4436,7 @@ void beep(void *frontend, int mode) char buf[sizeof(cfg.bell_wavefile) + 80]; char otherbuf[100]; sprintf(buf, "Unable to play sound file\n%s\n" - "Using default sound instead", cfg.bell_wavefile); + "Using default sound instead", cfg.bell_wavefile.path); sprintf(otherbuf, "%.70s Sound Error", appname); MessageBox(hwnd, buf, otherbuf, MB_OK | MB_ICONEXCLAMATION);