summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpixel <pixel>2004-07-30 00:49:47 +0000
committerpixel <pixel>2004-07-30 00:49:47 +0000
commit138e25787eb44a5ee0483422deedf66897b2d92b (patch)
tree570ef879b47ab14271d2be9fa908e127ccbbfa8d
parenta3dd74b5ff36af310382c19e959869a8fc847d69 (diff)
Very small indentation change...
-rw-r--r--lib/cdutils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cdutils.cpp b/lib/cdutils.cpp
index 3ab4982..d9efe68 100644
--- a/lib/cdutils.cpp
+++ b/lib/cdutils.cpp
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: cdutils.cpp,v 1.29 2004-05-03 12:55:04 pixel Exp $ */
+/* $Id: cdutils.cpp,v 1.30 2004-07-30 00:49:47 pixel Exp $ */
#include <stdio.h>
#include <string.h>
@@ -423,7 +423,7 @@ int cdutils::show_entry(struct DirEntry * dir) {
printm(M_BARE, "%6i %9i %2i/%02i/%04i %2i:%02i:%02i%+03.1f %c%c%c%c%c%c%c%c %s\n",
dir->Sector, dir->Size, dir->Day, dir->Month, dir->Year + 1900, dir->Hour, dir->Minute, dir->Second, ((float) dir->Offset) / 4,
- dir->Flags & 1 ? 'H' : '-', dir->Flags & 2 ? 'D' : '-', dir->Flags & 4 ? 'A' : '-', dir->Flags & 8 ? 'R' : '-',
+ dir->Flags & 1 ? 'H' : '-', dir->Flags & 2 ? 'D' : '-', dir->Flags & 4 ? 'A' : '-', dir->Flags & 8 ? 'R' : '-',
dir->Flags & 16 ? 'P' : '-', dir->Flags & 32 ? '1' : '-', dir->Flags & 64 ? '1' : '-', dir->Flags & 128 ? 'C' : '-', pbuf);
return dir->R;
}