<html>
<head>
<base href="https://bugs.freedesktop.org/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Additional _MSVC version check needed in config.h because of snprintf"
href="https://bugs.freedesktop.org/show_bug.cgi?id=93116#c1">Comment # 1</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Additional _MSVC version check needed in config.h because of snprintf"
href="https://bugs.freedesktop.org/show_bug.cgi?id=93116">bug 93116</a>
from <span class="vcard"><a class="email" href="mailto:ajohnson@redneon.com" title="Adrian Johnson <ajohnson@redneon.com>"> <span class="fn">Adrian Johnson</span></a>
</span></b>
<pre>Shouldn't that be
#if defined(_MSC_VER) && _MSC_VER <= 1800
Probably better to compare against the version that introduced snprint. ie
#if defined(_MSC_VER) && _MSC_VER < 1900</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>