Fixed some single-line comments.
--- a/src/physfs_unicode.c Tue Aug 24 10:05:58 2010 -0400
+++ b/src/physfs_unicode.c Tue Aug 24 14:17:07 2010 -0400
@@ -387,7 +387,7 @@
cp = UNICODE_BOGUS_CHAR_CODEPOINT;
else
{
- src++; // eat the other surrogate.
+ src++; /* eat the other surrogate. */
cp = (((cp - 0xD800) << 10) | (pair - 0xDC00));
} /* else */
} /* else if */
--- a/src/platform_pocketpc.c Tue Aug 24 10:05:58 2010 -0400
+++ b/src/platform_pocketpc.c Tue Aug 24 14:17:07 2010 -0400
@@ -416,7 +416,7 @@
DWORD rc;
/* Get the high order 32-bits of the position */
- //HighOrderPos = HIGHORDER_UINT64(pos);
+ /*HighOrderPos = HIGHORDER_UINT64(pos);*/
HighOrderPos = (unsigned long)(pos>>32);
/*!!! SetFilePointer needs a signed 64-bit value. */
@@ -450,7 +450,7 @@
{
/* Combine the high/low order to create the 64-bit position value */
retval = (((PHYSFS_uint64) HighPos) << 32) | LowPos;
- //assert(retval >= 0);
+ /*assert(retval >= 0);*/
} /* else */
return retval;
@@ -473,7 +473,7 @@
{
/* Combine the high/low order to create the 64-bit position value */
retval = (((PHYSFS_uint64) SizeHigh) << 32) | SizeLow;
- //assert(retval >= 0);
+ /*assert(retval >= 0);*/
} /* else */
return retval;