diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-03-03 08:14:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-03-03 08:14:44 +0000 |
commit | 220fafdd72eab05eb49cf6811d15d6618a168910 (patch) | |
tree | c90ef2fe3e9bb932197ac3ff5b305dd39a66204e /apps/plugins/grayscale.c | |
parent | e248eac20fc75566605aee705c130e0fa456aced (diff) |
Code Police raid. Mostly changed // comments and indented to Rockbox style.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8894 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/grayscale.c')
-rw-r--r-- | apps/plugins/grayscale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/grayscale.c b/apps/plugins/grayscale.c index 4ca2ba09b3..dfb48785cf 100644 --- a/apps/plugins/grayscale.c +++ b/apps/plugins/grayscale.c @@ -328,11 +328,11 @@ int main(void) enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { - rb = api; // copy to global api pointer + rb = api; /* copy to global api pointer */ (void)parameter; return main(); } -#endif // #ifdef HAVE_LCD_BITMAP +#endif /* #ifdef HAVE_LCD_BITMAP */ |