platform/amvideo.c: remove left-over brace from debug messages

This commit is contained in:
Felix Anderson 2020-05-18 23:02:11 +00:00
parent e5b0603722
commit 4343177e42
Signed by untrusted user: felix
GPG Key ID: 69ADF8AEB6C8B5D1
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}