$OpenBSD: patch-src_gui_image_qxbmhandler_cpp,v 1.2 2017/07/17 08:34:37 zhuk Exp $
Avoid confusing warning from linker.
Index: src/gui/image/qxbmhandler.cpp
--- src/gui/image/qxbmhandler.cpp.orig
+++ src/gui/image/qxbmhandler.cpp
@@ -241,11 +241,7 @@ static bool write_xbm_image(const QImage &sourceImage,
             }
         }
     }
-#if defined(_MSC_VER) && _MSC_VER >= 1400
-    strcpy_s(p, sizeof(" };\n"), " };\n");
-#else
-    strcpy(p, " };\n");
-#endif
+    memcpy(p, " };\n", sizeof(" };\n"));
     if ((int)qstrlen(buf) != device->write(buf, qstrlen(buf))) {
         delete [] buf;
         return false;
