debug: remove some parentheses
This commit is contained in:
parent
c35c6f0389
commit
e7b8a47e49
|
@ -2,7 +2,7 @@
|
|||
#define _DEBUG_H
|
||||
|
||||
#ifdef DEBUG
|
||||
#define DPRINTF(x) printf(x)
|
||||
#define DPRINTF(x) printf x
|
||||
#else
|
||||
#define DPRINTF(x)
|
||||
#endif
|
||||
|
|
22
src/dosfs.c
22
src/dosfs.c
|
@ -35,13 +35,13 @@ open_image(const char *path, int flags, dosfs_t *fsd)
|
|||
}
|
||||
|
||||
if (fsd->ib.jmp[0] != 0xEB || fsd->ib.jmp[2] != 0x90) {
|
||||
DPRINTF("hm... doesn't look like a FAT image?\n");
|
||||
DPRINTF(("hm... doesn't look like a FAT image?\n"));
|
||||
close(ifd);
|
||||
return EOPNOTSUPP;
|
||||
}
|
||||
|
||||
if (fsd->ib.sect_ct == 0 || fsd->ib.fat_size == 0) {
|
||||
DPRINTF("sect_ct or fat_size == 0, likely fat>32 (unsupported)\n");
|
||||
DPRINTF(("sect_ct or fat_size == 0, likely fat>32 (unsupported)\n"));
|
||||
close(ifd);
|
||||
return EOPNOTSUPP;
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ open_image(const char *path, int flags, dosfs_t *fsd)
|
|||
} else if (fsd->data_size < FAT16_MAX_CLUSTERS) {
|
||||
fsd->fs_ver = 16;
|
||||
} else {
|
||||
DPRINTF("data_size >= FAT12_MAX_CLUSTERS, likely fat>32 (unsupported)\n");
|
||||
DPRINTF(("data_size >= FAT12_MAX_CLUSTERS, likely fat>32 (unsupported)\n"));
|
||||
close(ifd);
|
||||
return EOPNOTSUPP;
|
||||
}
|
||||
|
@ -93,7 +93,7 @@ dos_listdir(dosfs_t *fsd, unsigned int offset)
|
|||
|
||||
start = malloc(sizeof(dosfile_t));
|
||||
if (start == NULL) {
|
||||
DPRINTF("malloc failed\n");
|
||||
DPRINTF(("malloc failed\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -107,14 +107,14 @@ dos_listdir(dosfs_t *fsd, unsigned int offset)
|
|||
|
||||
res = reallocarr(&dirs, root_ents, sizeof(struct dos_dirent));
|
||||
if (res == -1) {
|
||||
DPRINTF("reallocarr failed\n");
|
||||
DPRINTF(("reallocarr failed\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
res = pread(fsd->ifd, dirs, (root_ents * sizeof(struct dos_dirent)),
|
||||
offset);
|
||||
if (res == -1) {
|
||||
DPRINTF("pread failed\n");
|
||||
DPRINTF(("pread failed\n"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -128,7 +128,7 @@ dos_listdir(dosfs_t *fsd, unsigned int offset)
|
|||
if (i > 0) {
|
||||
cur->next = malloc(sizeof(dosfile_t));
|
||||
if (cur->next == NULL) {
|
||||
DPRINTF("inner malloc failed!?\n");
|
||||
DPRINTF(("inner malloc failed!?\n"));
|
||||
res = -1;
|
||||
break;
|
||||
}
|
||||
|
@ -199,7 +199,7 @@ read_fat_chain(dosfs_t *fsd, unsigned int first, int *length)
|
|||
len++;
|
||||
res = reallocarr(&chain, len, sizeof(unsigned int));
|
||||
if (res == -1) {
|
||||
DPRINTF("reallocarr failed\n");
|
||||
DPRINTF(("reallocarr failed\n"));
|
||||
free(chain);
|
||||
return NULL;
|
||||
}
|
||||
|
@ -211,7 +211,7 @@ read_fat_chain(dosfs_t *fsd, unsigned int first, int *length)
|
|||
/* XXX: endianness */
|
||||
res = pread(fsd->ifd, &next, 2, byte_off);
|
||||
if (res == -1) {
|
||||
DPRINTF("pread failed\n");
|
||||
DPRINTF(("pread failed\n"));
|
||||
free(chain);
|
||||
return NULL;
|
||||
}
|
||||
|
@ -248,7 +248,7 @@ get_byte_offset(dosfs_t *fsd, dosfile_t *file, int f_offset)
|
|||
int coff, csz;
|
||||
|
||||
if (f_offset > file->ent.size) {
|
||||
DPRINTF("offset requested is out of bounds!\n");
|
||||
DPRINTF(("offset requested is out of bounds!\n"));
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
@ -259,7 +259,7 @@ get_byte_offset(dosfs_t *fsd, dosfile_t *file, int f_offset)
|
|||
coff = f_offset / csz;
|
||||
|
||||
if (coff > file->fc_len) {
|
||||
DPRINTF("offset is within filesize, but not enough clusters??\n");
|
||||
DPRINTF(("offset is within filesize, but not enough clusters??\n"));
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue