From bef3256db56398214dd651e7e7b26f4d60274123 Mon Sep 17 00:00:00 2001 From: liruncong Date: Wed, 5 Dec 2018 20:37:36 +0800 Subject: [PATCH] =?UTF-8?q?[libcpu/arm/ia32]rt=5Fhw=5Finterrupt=5Finstall?= =?UTF-8?q?=E5=87=BD=E6=95=B0name=E5=8F=82=E6=95=B0=E5=A2=9E=E5=8A=A0const?= =?UTF-8?q?=E9=99=90=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libcpu/ia32/interrupt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcpu/ia32/interrupt.c b/libcpu/ia32/interrupt.c index 4d86d593df..e620cbe76c 100644 --- a/libcpu/ia32/interrupt.c +++ b/libcpu/ia32/interrupt.c @@ -131,7 +131,7 @@ void rt_hw_interrupt_mask(int vector) rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, void *param, - char *name) + const char *name) { rt_isr_handler_t old_handler = RT_NULL;