Update Linux build

Fix some %ld message in log messages, and update the Linux sample
code to match recent changes in NufxLib and DiskImgLib.

Also, bump MDC version to 3.0.0 to match Windows version.
This commit is contained in:
Andy McFadden
2015-01-08 18:24:15 -08:00
parent e620d054bb
commit b97584eeb6
9 changed files with 21 additions and 21 deletions
+3 -3
View File
@@ -468,10 +468,10 @@ main(int argc, char** argv)
}
printf("Image Converter for Linux v1.0\n");
printf("Copyright (C) 2004 by faddenSoft, LLC. All rights reserved.\n");
long major, minor, bug;
printf("Copyright (C) 2014 by faddenSoft. All rights reserved.\n");
int32_t major, minor, bug;
Global::GetVersion(&major, &minor, &bug);
printf("Linked against DiskImg library v%ld.%ld.%ld\n",
printf("Linked against DiskImg library v%d.%d.%d\n",
major, minor, bug);
printf("Log file is '%s'\n", kLogFile);
printf("\n");