On Wed, Apr 29, 2009 at 11:04 AM, Igor Skochinsky <[email protected]> wrote:

> Just Visual Studio 2005, but I guess the exact version does not matter much.

It does matter. You need to upgrade if you want printf-family
functions to support long long correctly. If you don't upgrade,
you'll be doing this:

#ifdef _MSC_VER
printf("%I64x",my_long_long_variable);
#else
printf("%llx",my_long_long_variable);
#endif

In case your font doesn't show the difference, the first one
uses "I" as in "India" and the second an "l" as in "long".
_______________________________________________
Openocd-development mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to