Fixed comment spacing.

This commit is contained in:
Ryan C. Gordon 2002-06-29 19:16:00 +00:00
parent 3b0f1c896f
commit bac849c727
1 changed files with 6 additions and 6 deletions

View File

@ -48,13 +48,13 @@ static void DIR_dirClose(DirHandle *h);
static const FileFunctions __PHYSFS_FileFunctions_DIR = static const FileFunctions __PHYSFS_FileFunctions_DIR =
{ {
DIR_read, /* read() method */ DIR_read, /* read() method */
NULL, /* write() method */ NULL, /* write() method */
DIR_eof, /* eof() method */ DIR_eof, /* eof() method */
DIR_tell, /* tell() method */ DIR_tell, /* tell() method */
DIR_seek, /* seek() method */ DIR_seek, /* seek() method */
DIR_fileLength, /* fileLength() method */ DIR_fileLength, /* fileLength() method */
DIR_fileClose /* fileClose() method */ DIR_fileClose /* fileClose() method */
}; };