From 064de1b580ac1be7f08f748254342a5c948e61f7 Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Mon, 18 Mar 2019 15:37:45 +0000 Subject: [PATCH] removed unneeded variables from fmtoutv.h --- moo/lib/fmtoutv.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/moo/lib/fmtoutv.h b/moo/lib/fmtoutv.h index aaa27fa..a3aace0 100644 --- a/moo/lib/fmtoutv.h +++ b/moo/lib/fmtoutv.h @@ -738,7 +738,6 @@ static int fmtoutv (moo_t* moo, const fmtchar_t* fmt, moo_fmtout_data_t* data, v } else if (!(lm_flag & LF_L) && *usp <= 0xFFFF) { - moo_bch_t xbuf[3]; moo_uint16_t u16 = *usp; moo_uint8_t* bsp = (moo_uint8_t*)&u16; PUT_OOCH('\\', 1); @@ -753,7 +752,6 @@ static int fmtoutv (moo_t* moo, const fmtchar_t* fmt, moo_fmtout_data_t* data, v } else { - moo_bch_t xbuf[3]; moo_uint32_t u32 = *usp; moo_uint8_t* bsp = (moo_uint8_t*)&u32; PUT_OOCH('\\', 1);