diff options
| author | Ilias Apalodimas <[email protected]> | 2025-08-12 09:10:20 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-08-19 11:25:23 -0600 |
| commit | 544bf0aa599f9afd8ac5224b005edd4b5bb374ed (patch) | |
| tree | 744aff74241c57b76124e4ed777ec0cd1c76d528 /tools | |
| parent | 6139d5f2521593edc64421976d7830e44121745b (diff) | |
tools: aisimage: Make aisimage_check_params() static
We are trying to enable -Wmissing-prototypes and this functiion is only
used locally. Mark it as static.
Signed-off-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/aisimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aisimage.c b/tools/aisimage.c index c5b33b559b0..7a44b2d6ab6 100644 --- a/tools/aisimage.c +++ b/tools/aisimage.c @@ -387,7 +387,7 @@ static void aisimage_set_header(void *ptr, struct stat *sbuf, int ifd, { } -int aisimage_check_params(struct image_tool_params *params) +static int aisimage_check_params(struct image_tool_params *params) { if (!params) return CFG_INVALID; |
