From 941236948fde1359111b07c1acc8b4f294d22a15 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Wed, 30 Apr 2014 16:34:39 +0200 Subject: [PATCH] Fix GCC when use -Wpedantic nghttp2_int.h:50:33: error: comma at end of enumerator list [-Werror=pedantic] --- lib/nghttp2_int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nghttp2_int.h b/lib/nghttp2_int.h index 678d1eef..2a77ed4f 100644 --- a/lib/nghttp2_int.h +++ b/lib/nghttp2_int.h @@ -47,7 +47,7 @@ typedef enum { NGHTTP2_ERR_CREDENTIAL_PENDING = -101, NGHTTP2_ERR_BUFFER_ERROR = -102, NGHTTP2_ERR_IGN_HEADER_BLOCK = -103, - NGHTTP2_ERR_IGN_PAYLOAD = -104, + NGHTTP2_ERR_IGN_PAYLOAD = -104 } nghttp2_internal_error; #endif /* NGHTTP2_INT_H */