diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2009-01-31 23:51:11 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-01-31 23:51:11 +0000 |
commit | 8e2ff63a7e1f7c493d867c8b4982feacf6f781ca (patch) | |
tree | 191c9b1337b7a5a5c94a1e43559f8504717ddb0d /apps | |
parent | 1929e4724578a94143bab07487fb1e14ebaee9cf (diff) |
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.c | 2 |
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, #endif /* HAVE_UPSCALER */ #ifndef PLUGIN -void output_row_native(uint32_t row, void * row_in, struct scaler_context *ctx) +static void output_row_native(uint32_t row, void * row_in, struct scaler_context *ctx) { int col; int fb_width = BM_WIDTH(ctx->bm->width,FORMAT_NATIVE,0); |