From b8e1f79b4d912b48b148e379fe2768d417d0b05e Mon Sep 17 00:00:00 2001 From: Alex Tereschenko Date: Fri, 2 Oct 2015 23:44:10 +0200 Subject: [PATCH] gpio.c: Fixed typo Signed-off-by: Alex Tereschenko Signed-off-by: Brendan Le Foll --- src/gpio/gpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpio/gpio.c b/src/gpio/gpio.c index ffaac30..cdbb334 100644 --- a/src/gpio/gpio.c +++ b/src/gpio/gpio.c @@ -235,7 +235,7 @@ mraa_gpio_interrupt_handler(void* arg) #ifdef SWIGPYTHON // In order to call a python object (all python functions are objects) we // need to aquire the GIL (Global Interpreter Lock). This may not always be - // nessecary but especially if doing IO (like print()) python will segfault + // necessary but especially if doing IO (like print()) python will segfault // if we do not hold a lock on the GIL PyGILState_STATE gilstate = PyGILState_Ensure(); PyObject* arglist;