diff options
author | Youngjae Cho <y0.cho@samsung.com> | 2019-12-30 16:53:31 +0900 |
---|---|---|
committer | Youngjae Cho <y0.cho@samsung.com> | 2019-12-30 16:53:31 +0900 |
commit | cea6ca162361fe3e5eaef7708c39c41c439a1c37 (patch) | |
tree | 1c3ef0453147475d66972239f31ed1e4e2b25503 | |
parent | 04525d0cd959d87568aada1abd76d1803b11511e (diff) | |
download | device-tw3-cea6ca162361fe3e5eaef7708c39c41c439a1c37.tar.gz device-tw3-cea6ca162361fe3e5eaef7708c39c41c439a1c37.tar.bz2 device-tw3-cea6ca162361fe3e5eaef7708c39c41c439a1c37.zip |
Remove 'format-truncation' warning for GCC-9
Change-Id: I0744cd4c5ef526f33d459650d0e5ca6e35b639e3
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
-rw-r--r-- | hw/external_connection/external_connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/external_connection/external_connection.c b/hw/external_connection/external_connection.c index f49083b..2536b42 100644 --- a/hw/external_connection/external_connection.c +++ b/hw/external_connection/external_connection.c @@ -149,7 +149,7 @@ static int external_connection_get_current_state( { int ret, i; struct connection_info info; - char buf[8]; + char buf[16]; if (!updated_cb) return -EINVAL; |