Bug 981558: Test _MSC_VER instead of _WIN32 for the code that uses

the __int64 type because gcc on Windows doesn't support the i64
integer literal suffix and the use of I64 in printf format specifiers.
TBR=gk.
This commit is contained in:
Wan-Teh Chang 2014-03-14 17:11:44 -07:00
parent 4b7dbc2736
commit d3bdf3f180
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ int main(int argc, char **argv)
* of this program and omit the library build time
* in PRVersionDescription.
*/
#elif defined(_WIN32)
#elif defined(_MSC_VER)
__int64 now;
time_t sec;