diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-07-18 16:22:48 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-07-18 16:23:11 +0200 |
| commit | b7937a729f948c41f6582d74dd275aed2aa4fa25 (patch) | |
| tree | dd9235326092b71bdf4678ac75f0efd1c3b80153 | |
| parent | f0430e291a5dc83c7114fc9c552f92943d4abe13 (diff) | |
| download | rockbox-b7937a729f948c41f6582d74dd275aed2aa4fa25.zip rockbox-b7937a729f948c41f6582d74dd275aed2aa4fa25.tar.gz rockbox-b7937a729f948c41f6582d74dd275aed2aa4fa25.tar.bz2 rockbox-b7937a729f948c41f6582d74dd275aed2aa4fa25.tar.xz | |
fix database tool
Change-Id: I48702c3213aae7e2c64ea0e1f197e61368393759
| -rw-r--r-- | firmware/export/ata_idle_notify.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/ata_idle_notify.h b/firmware/export/ata_idle_notify.h index 644df93..93a53ee 100644 --- a/firmware/export/ata_idle_notify.h +++ b/firmware/export/ata_idle_notify.h @@ -46,7 +46,7 @@ enum { /* Enable storage callbacks everywhere except for bootloaders. Both * hosted and native targets need this. */ -#define USING_STORAGE_CALLBACK !defined(BOOTLOADER) && !defined(APPLICATION) +#define USING_STORAGE_CALLBACK !defined(BOOTLOADER) && !defined(APPLICATION) && !defined(__PCTOOL__) extern void register_storage_idle_func(void (*function)(void *data)); #if USING_STORAGE_CALLBACK |