diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-02 18:01:31 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-02 18:01:31 +0000 |
| commit | 71ef31a2a9280b4cb70403ddf31409a371a55423 (patch) | |
| tree | 21b08dba3262db6b8d495b1715c165d57fea8b5e /apps | |
| parent | 4b54559920be65ab411e974a90f3956b8d107af1 (diff) | |
| download | rockbox-71ef31a2a9280b4cb70403ddf31409a371a55423.zip rockbox-71ef31a2a9280b4cb70403ddf31409a371a55423.tar.gz rockbox-71ef31a2a9280b4cb70403ddf31409a371a55423.tar.bz2 rockbox-71ef31a2a9280b4cb70403ddf31409a371a55423.tar.xz | |
Corrected ATA debug option
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1310 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c index fe33bab..0978a74 100644 --- a/apps/main.c +++ b/apps/main.c @@ -102,7 +102,7 @@ void init(void) button_init(); rc = ata_init(); - if(!rc) + if(rc) { #ifdef ARCHOS_RECORDER char str[32]; |