From 488964430163c5930ad95d15c90a323855aae444 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 10 Nov 2011 11:37:08 +0100 Subject: [PATCH] Fix warning: comma at end of enumerator list --- include/uv.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uv.h b/include/uv.h index 136697fd..28ef8ee3 100644 --- a/include/uv.h +++ b/include/uv.h @@ -122,6 +122,7 @@ typedef intptr_t ssize_t; #define UV_ERRNO_GEN(val, name, s) UV_##name = val, typedef enum { UV_ERRNO_MAP(UV_ERRNO_GEN) + UV_MAX_ERRORS } uv_err_code; #undef UV_ERRNO_GEN