diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2004-05-21 20:28:33 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2004-05-21 20:28:33 +0000 |
| commit | 40a94710ee1046200723a9baf2829a881f9830d5 (patch) | |
| tree | dab1093586d1f309fac81605f3c588041bd83b37 | |
| parent | eff1f800bea819cab413b2a014b5935e0c8998a5 (diff) | |
| download | rockbox-40a94710ee1046200723a9baf2829a881f9830d5.zip rockbox-40a94710ee1046200723a9baf2829a881f9830d5.tar.gz rockbox-40a94710ee1046200723a9baf2829a881f9830d5.tar.bz2 rockbox-40a94710ee1046200723a9baf2829a881f9830d5.tar.xz | |
Fixed build errors
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4679 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/filetypes.c | 1 | ||||
| -rw-r--r-- | apps/neo/icons.h | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index f7eb33b..661defa 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -224,7 +224,6 @@ int filetype_load_menu(struct menu_item* menu,int max_items) { int i; int cnt=0; - char* dash; for (i=0; i < cnt_filetypes; i++) { diff --git a/apps/neo/icons.h b/apps/neo/icons.h index c96f821..7f0c0b7 100644 --- a/apps/neo/icons.h +++ b/apps/neo/icons.h @@ -16,6 +16,9 @@ * KIND, either express or implied. * ****************************************************************************/ +#ifndef _ICONS_H_ +#define _ICONS_H_ + #include <lcd.h> /* @@ -31,3 +34,5 @@ enum { }; #endif + +#endif |