summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-11-26 10:59:18 +0000
committerJani Taskinen <jani@php.net>2007-11-26 10:59:18 +0000
commita109ecaacf124097098f760b0877de2a46529a60 (patch)
tree5d6d2693ca492b6e32cfa526df64621d377763be /main
parent947cebee3cf5ca50d6b3333fd9d0e364c4d32927 (diff)
downloadphp-git-a109ecaacf124097098f760b0877de2a46529a60.tar.gz
MFH:- Fixed bug #43365 (Several enums have trailing commas)
Diffstat (limited to 'main')
-rw-r--r--main/streams/php_stream_filter_api.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/php_stream_filter_api.h b/main/streams/php_stream_filter_api.h
index 040a8f0222..51e54ddd98 100644
--- a/main/streams/php_stream_filter_api.h
+++ b/main/streams/php_stream_filter_api.h
@@ -62,7 +62,7 @@ struct _php_stream_bucket_brigade {
typedef enum {
PSFS_ERR_FATAL, /* error in data stream */
PSFS_FEED_ME, /* filter needs more data; stop processing chain until more is available */
- PSFS_PASS_ON, /* filter generated output buckets; pass them on to next in chain */
+ PSFS_PASS_ON /* filter generated output buckets; pass them on to next in chain */
} php_stream_filter_status_t;
/* Buckets API. */