[syslinux] silence a MinGW warning in libfat

* Also fix a typo in ChangeLog.txt
This commit is contained in:
Pete Batard 2013-07-18 00:10:29 +01:00
parent 862365c01a
commit e661eff9ae
3 changed files with 8 additions and 6 deletions

View File

@ -2,7 +2,7 @@ o Version 1.3.4 (2013.07.15)
Syslinux v5 support (NEW) Syslinux v5 support (NEW)
UDF formatting support (NEW - Vista and later only) UDF formatting support (NEW - Vista and later only)
More drive handling improvements, to avoid "Could not open media" errors More drive handling improvements, to avoid "Could not open media" errors
Fixed support for ISOs with files larger than 4GB files Fixed support for ISOs containing files larger than 4GB
Fixed elevation request for unprivileged users Fixed elevation request for unprivileged users
Fixed download of c32 files into the application directory Fixed download of c32 files into the application directory
Better compression algorithm for the executable Better compression algorithm for the executable

View File

@ -30,7 +30,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
IDD_DIALOG DIALOGEX 12, 12, 206, 329 IDD_DIALOG DIALOGEX 12, 12, 206, 329
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW EXSTYLE WS_EX_APPWINDOW
CAPTION "Rufus v1.3.4.270" CAPTION "Rufus v1.3.4.271"
FONT 8, "MS Shell Dlg", 400, 0, 0x1 FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN BEGIN
DEFPUSHBUTTON "Start",IDC_START,94,291,50,14 DEFPUSHBUTTON "Start",IDC_START,94,291,50,14
@ -278,8 +278,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,3,4,270 FILEVERSION 1,3,4,271
PRODUCTVERSION 1,3,4,270 PRODUCTVERSION 1,3,4,271
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -296,13 +296,13 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)"
VALUE "FileDescription", "Rufus" VALUE "FileDescription", "Rufus"
VALUE "FileVersion", "1.3.4.270" VALUE "FileVersion", "1.3.4.271"
VALUE "InternalName", "Rufus" VALUE "InternalName", "Rufus"
VALUE "LegalCopyright", "© 2011-2013 Pete Batard (GPL v3)" VALUE "LegalCopyright", "© 2011-2013 Pete Batard (GPL v3)"
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
VALUE "OriginalFilename", "rufus.exe" VALUE "OriginalFilename", "rufus.exe"
VALUE "ProductName", "Rufus" VALUE "ProductName", "Rufus"
VALUE "ProductVersion", "1.3.4.270" VALUE "ProductVersion", "1.3.4.271"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -98,6 +98,8 @@ libfat_open(int (*readfunc) (intptr_t, void *, size_t, libfat_sector_t),
if (minfatsize > fatsize) if (minfatsize > fatsize)
goto barf; /* The FATs don't fit */ goto barf; /* The FATs don't fit */
#else
(void)(minfatsize); /* silence an unused warning in MinGW */
#endif #endif
if (fs->fat_type == FAT28) if (fs->fat_type == FAT28)