From be80d6f74f9d82220e952a54f3f129aae1f13f95 Mon Sep 17 00:00:00 2001 From: "snappy.mirrorbot@gmail.com" Date: Tue, 22 May 2012 09:46:05 +0000 Subject: [PATCH] Fix public bug #62: Remove an extraneous comma at the end of an enum list, causing compile errors when embedded in Mozilla on OpenBSD. R=sanjay git-svn-id: https://snappy.googlecode.com/svn/trunk@63 03e5f5b5-db94-4691-08a0-1a8bf15f6143 --- snappy-c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappy-c.h b/snappy-c.h index 88e1122..c6c2a86 100644 --- a/snappy-c.h +++ b/snappy-c.h @@ -46,7 +46,7 @@ extern "C" { typedef enum { SNAPPY_OK = 0, SNAPPY_INVALID_INPUT = 1, - SNAPPY_BUFFER_TOO_SMALL = 2, + SNAPPY_BUFFER_TOO_SMALL = 2 } snappy_status; /*