patch 7.4.1883
Problem:    Cppcheck found 2 incorrect printf formats.
Solution:   Use %ld and %lx. (Dominique Pelle)
diff --git a/src/VisVim/Commands.cpp b/src/VisVim/Commands.cpp
index 111b163..569fbb8 100644
--- a/src/VisVim/Commands.cpp
+++ b/src/VisVim/Commands.cpp
@@ -575,7 +575,7 @@
 	if (LineNr > 0)
 	{
 		// Goto line
-		sprintf(VimCmd, ":%d\n", LineNr);
+		sprintf(VimCmd, ":%ld\n", LineNr);
 		if (! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf)))
 			goto OleError;
 	}