Updated ChangeLog for v2.0.3 release.

Removed occurrence of "ushort", which isn't supposed to be used in
public headers.
This commit is contained in:
Andy McFadden 2004-10-11 19:43:31 +00:00
parent 885238346b
commit 2bf07c92bb
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
2004/10/11 ***** v2.0.3 shipped *****
2004/09/25 fadden
- Fixed: attempting to add files after deleting *all* entries in an
archive would fail.
- Removed use of a "ushort" from NufxLib.h.
2004/09/20 fadden
- Corrected behavior after flush when original archive can't be

View File

@ -201,7 +201,7 @@ typedef enum NuThreadFormat {
((char) ((sysInfo) & 0xff))
/* return a file_sys_info with a replaced filesystem separator */
#define NuSetSepInSysInfo(sysInfo, newSep) \
((ushort) (((sysInfo) & 0xff00) | ((newSep) & 0xff)) )
((unsigned short) (((sysInfo) & 0xff00) | ((newSep) & 0xff)) )
/* GS/OS-defined file system identifiers; sadly, UNIX is not among them */
typedef enum NuFileSysID {