From 5c426877595c7b2e365594cc3f529935c80a0186 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Thu, 9 Apr 2015 15:44:36 +0200 Subject: [PATCH] fix comma at end of enumerator list [-Wpedantic] --- 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 3d77eaab..60070176 100644 --- a/lib/nghttp2_int.h +++ b/lib/nghttp2_int.h @@ -51,7 +51,7 @@ typedef enum { * Invalid HTTP header field was received but it can be treated as * if it was not received because of compatibility reasons. */ - NGHTTP2_ERR_IGN_HTTP_HEADER = -105, + NGHTTP2_ERR_IGN_HTTP_HEADER = -105 } nghttp2_internal_error; #endif /* NGHTTP2_INT_H */