aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-23 16:03:04 +0200
committerAnton Khirnov <anton@khirnov.net>2015-02-20 09:18:30 +0100
commit3d5dcfe8a592e4cb5fef4ef440d4f440937ee697 (patch)
tree3791c2dc2928f1fb06d945551ba513db555a9ffe /src/decoder_list.h
parentd40d9e7c5f718936f3a126a8b7c3c9e1bb1c6290 (diff)
decoder*h: remove tabs
Diffstat (limited to 'src/decoder_list.h')
-rw-r--r--src/decoder_list.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/decoder_list.h b/src/decoder_list.h
index d0a6ade7..9eb92b25 100644
--- a/src/decoder_list.h
+++ b/src/decoder_list.h
@@ -28,14 +28,14 @@ extern const struct decoder_plugin *const decoder_plugins[];
extern bool decoder_plugins_enabled[];
#define decoder_plugins_for_each(plugin) \
- for (const struct decoder_plugin *plugin, \
- *const*decoder_plugin_iterator = &decoder_plugins[0]; \
- (plugin = *decoder_plugin_iterator) != NULL; \
- ++decoder_plugin_iterator)
+ for (const struct decoder_plugin *plugin, \
+ *const*decoder_plugin_iterator = &decoder_plugins[0]; \
+ (plugin = *decoder_plugin_iterator) != NULL; \
+ ++decoder_plugin_iterator)
#define decoder_plugins_for_each_enabled(plugin) \
- decoder_plugins_for_each(plugin) \
- if (decoder_plugins_enabled[decoder_plugin_iterator - decoder_plugins])
+ decoder_plugins_for_each(plugin) \
+ if (decoder_plugins_enabled[decoder_plugin_iterator - decoder_plugins])
/* interface for using plugins */
@@ -48,7 +48,7 @@ extern bool decoder_plugins_enabled[];
*/
const struct decoder_plugin *
decoder_plugin_from_suffix(const char *suffix,
- const struct decoder_plugin *plugin);
+ const struct decoder_plugin *plugin);
const struct decoder_plugin *
decoder_plugin_from_mime_type(const char *mimeType, unsigned int next);