summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsnappy.mirrorbot@gmail.com <snappy.mirrorbot@gmail.com@03e5f5b5-db94-4691-08a0-1a8bf15f6143>2012-05-22 09:46:05 +0000
committersnappy.mirrorbot@gmail.com <snappy.mirrorbot@gmail.com@03e5f5b5-db94-4691-08a0-1a8bf15f6143>2012-05-22 09:46:05 +0000
commit450d5388e3003ffd8599a34ec7cc854b81937582 (patch)
tree9115228f6bd4de7224ce4e1a09a1a23d557e91f8
parentc4fa09760690b6cad194745e6000581c45b02ef4 (diff)
downloadsnappy-450d5388e3003ffd8599a34ec7cc854b81937582.tar.gz
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: http://snappy.googlecode.com/svn/trunk@63 03e5f5b5-db94-4691-08a0-1a8bf15f6143
-rw-r--r--snappy-c.h2
1 files changed, 1 insertions, 1 deletions
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;
/*