From 87cdc7341d15037e94f32f7ced1df750c04a512b Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Fri, 30 Nov 2012 14:05:01 +0100 Subject: [PATCH] riched20/tests: Remove a superfluous function pointer cast. --- dlls/riched20/tests/editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/riched20/tests/editor.c b/dlls/riched20/tests/editor.c index fa80def12b5..d72b4e1152b 100644 --- a/dlls/riched20/tests/editor.c +++ b/dlls/riched20/tests/editor.c @@ -5173,7 +5173,7 @@ static void test_EM_StreamIn_Undo(void) char buffer[1024] = {0}; const char randomtext[] = "Some text"; - es.pfnCallback = (EDITSTREAMCALLBACK) EditStreamCallback; + es.pfnCallback = EditStreamCallback; /* StreamIn, no SFF_SELECTION */ es.dwCookie = nCallbackCount;