summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2009-01-31 23:51:11 +0000
committerBertrik Sikken <bertrik@sikken.nl>2009-01-31 23:51:11 +0000
commit8e2ff63a7e1f7c493d867c8b4982feacf6f781ca (patch)
tree191c9b1337b7a5a5c94a1e43559f8504717ddb0d /apps
parent1929e4724578a94143bab07487fb1e14ebaee9cf (diff)
downloadrockbox-8e2ff63a7e1f7c493d867c8b4982feacf6f781ca.tar.gz
rockbox-8e2ff63a7e1f7c493d867c8b4982feacf6f781ca.zip
Various files: make function implementations consistent with their declaration in the header file or static if
they're local. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19892 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/resize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/resize.c b/apps/recorder/resize.c
index 235e071f7b..55b8f77ca9 100644
--- a/apps/recorder/resize.c
+++ b/apps/recorder/resize.c
@@ -508,7 +508,7 @@ static inline bool scale_v_linear(struct rowset *rset,
508#endif /* HAVE_UPSCALER */ 508#endif /* HAVE_UPSCALER */
509 509
510#ifndef PLUGIN 510#ifndef PLUGIN
511void output_row_native(uint32_t row, void * row_in, struct scaler_context *ctx) 511static void output_row_native(uint32_t row, void * row_in, struct scaler_context *ctx)
512{ 512{
513 int col; 513 int col;
514 int fb_width = BM_WIDTH(ctx->bm->width,FORMAT_NATIVE,0); 514 int fb_width = BM_WIDTH(ctx->bm->width,FORMAT_NATIVE,0);