From 4343177e42f61ed5212889a43a466301e3bfc0dc Mon Sep 17 00:00:00 2001 From: Matt Bilker Date: Mon, 18 May 2020 23:02:11 +0000 Subject: [PATCH] platform/amvideo.c: remove left-over brace from debug messages --- platform/amvideo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/amvideo.c b/platform/amvideo.c index ef4b213..e06931e 100644 --- a/platform/amvideo.c +++ b/platform/amvideo.c @@ -153,14 +153,14 @@ HRESULT amvideo_hook_init(const struct amvideo_config *cfg, HMODULE redir_mod) static int amDllVideoOpen(void *ctx) { - dprintf("AmVideo: %s)\n", __func__); + dprintf("AmVideo: %s\n", __func__); return 0; } static int amDllVideoClose(void *ctx) { - dprintf("AmVideo: %s)\n", __func__); + dprintf("AmVideo: %s\n", __func__); return 0; }