From 0597eb5587e508b17d5f246f170bc5fcae24aece Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 30 Apr 2017 12:41:19 -0600 Subject: [PATCH] Fix a typo introduced in last commit. --- arch/arm/src/stm32/stm32_i2c_alt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/stm32/stm32_i2c_alt.c b/arch/arm/src/stm32/stm32_i2c_alt.c index a39248f56d..21f6696732 100644 --- a/arch/arm/src/stm32/stm32_i2c_alt.c +++ b/arch/arm/src/stm32/stm32_i2c_alt.c @@ -1890,7 +1890,7 @@ static int stm32_i2c_isr_process(struct stm32_i2c_priv_s *priv) #ifndef CONFIG_I2C_POLLED static int stm32_i2c_isr(int irq, void *context, FAR void *arg) { - struct stm32_i2c_priv_s *priv = (struct stm32_i2c_priv_s )arg; + struct stm32_i2c_priv_s *priv = (struct stm32_i2c_priv_s *)arg; DEBUGASSERT(priv != NULL); return stm32_i2c_isr_process(priv);