X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=libserialport_internal.h;h=6a682cb205c3b2399ef663a03f99eb374946541b;hb=5f64c28551d7ee7dbecf5215cb75d63c3cf8303b;hp=6a8c877262720f179a543151fa1ff7b41ba00f5e;hpb=e019e72ec0bb04cb52d6b14810485ea8d96a97ee;p=libserialport.git diff --git a/libserialport_internal.h b/libserialport_internal.h index 6a8c877..6a682cb 100644 --- a/libserialport_internal.h +++ b/libserialport_internal.h @@ -224,7 +224,7 @@ extern void (*sp_debug_handler)(const char *format, ...); #define TRACE(fmt, ...) DEBUG_FMT("%s(" fmt ") called", __func__, __VA_ARGS__) #define TRACE_VOID() DEBUG_FMT("%s() called", __func__) -#define TRY(x) do { int ret = x; if (ret != SP_OK) RETURN_CODEVAL(ret); } while (0) +#define TRY(x) do { int retval = x; if (retval != SP_OK) RETURN_CODEVAL(retval); } while (0) SP_PRIV struct sp_port **list_append(struct sp_port **list, const char *portname);