summaryrefslogtreecommitdiff
path: root/src/utilcode/util.cpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-08-05 16:00:00 -0700
committerJan Kotas <jkotas@microsoft.com>2015-08-05 16:14:04 -0700
commite222536b41729093647689e7507e944fed490d08 (patch)
tree692391267ca6c3d2576fd3771ce7f78722238900 /src/utilcode/util.cpp
parentc32d22b11658f006b19b3094984edefeedf03215 (diff)
downloadcoreclr-e222536b41729093647689e7507e944fed490d08.tar.gz
coreclr-e222536b41729093647689e7507e944fed490d08.tar.bz2
coreclr-e222536b41729093647689e7507e944fed490d08.zip
Fix build breaks on VS2015 RTM
Most of the changes are about mismatches between printf formatting strings and argument types. Fix #1294.
Diffstat (limited to 'src/utilcode/util.cpp')
-rw-r--r--src/utilcode/util.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utilcode/util.cpp b/src/utilcode/util.cpp
index 8b1fa550dc..3bc6f73382 100644
--- a/src/utilcode/util.cpp
+++ b/src/utilcode/util.cpp
@@ -2930,8 +2930,7 @@ void SOViolation(const char *szFunction, const char *szFile, int lineNum, SOViol
"\nPlease open a bug against the feature owner.\n"
"\nNOTE: You can disable this ASSERT by setting COMPLUS_SOEnableBackoutStackValidation=0.\n"
"\nFor details about this feature, see, in a CLR enlistment,\n"
- "src\\ndp\\clr\\doc\\OtherDevDocs\\untriaged\\clrdev_web\\SO Guide for CLR Developers.doc\n",
- szFunction, szFile, lineNum);
+ "src\\ndp\\clr\\doc\\OtherDevDocs\\untriaged\\clrdev_web\\SO Guide for CLR Developers.doc\n");
}
else
{