From 0faab853cb30e5cb50d32ffb7246ab3ea9ce5aa1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 30 Nov 2018 11:29:51 +1100 Subject: [PATCH] HAL_ChibiOS: make atob static only used in this file --- libraries/AP_HAL_ChibiOS/stdio.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/AP_HAL_ChibiOS/stdio.cpp b/libraries/AP_HAL_ChibiOS/stdio.cpp index 4b33462507..a0d08b8fca 100644 --- a/libraries/AP_HAL_ChibiOS/stdio.cpp +++ b/libraries/AP_HAL_ChibiOS/stdio.cpp @@ -246,8 +246,7 @@ _atob (uint32_t *vp, char *p, int base) * atob(vp,p,base) * converts p to binary result in vp, rtn 1 on success */ -int16_t -atob(uint32_t *vp, char *p, int base) +static int16_t atob(uint32_t *vp, char *p, int base) { uint32_t v;