diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:53:08 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:53:08 +0000 |
commit | 8ab84441bb8c1e7e698eb152c13e64e6681638db (patch) | |
tree | 5506a8adac2cb60408003121c0c9dfc076a20986 /sys/dxr3 | |
parent | f68a449ea32c9a7c85f73048464e5cca047c7a58 (diff) | |
download | gst-plugins-bad-8ab84441bb8c1e7e698eb152c13e64e6681638db.tar.gz gst-plugins-bad-8ab84441bb8c1e7e698eb152c13e64e6681638db.tar.bz2 gst-plugins-bad-8ab84441bb8c1e7e698eb152c13e64e6681638db.zip |
fourth batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in ...
Original commit message from CVS:
fourth batch :
remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc
(in gst-plugins/sys/ this time)
Diffstat (limited to 'sys/dxr3')
-rw-r--r-- | sys/dxr3/dxr3spusink.c | 2 | ||||
-rw-r--r-- | sys/dxr3/dxr3videosink.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dxr3/dxr3spusink.c b/sys/dxr3/dxr3spusink.c index 0d7e6457..71312c09 100644 --- a/sys/dxr3/dxr3spusink.c +++ b/sys/dxr3/dxr3spusink.c @@ -60,7 +60,7 @@ enum enum { - ARG_0, + ARG_0 }; diff --git a/sys/dxr3/dxr3videosink.c b/sys/dxr3/dxr3videosink.c index 80805913..2c994c87 100644 --- a/sys/dxr3/dxr3videosink.c +++ b/sys/dxr3/dxr3videosink.c @@ -74,7 +74,7 @@ enum { PARSE_STATE_WAITING, /* Waiting for the start of a sequence. */ PARSE_STATE_START, /* Start of sequence seen. */ - PARSE_STATE_PICTURE, /* Picture start seen. */ + PARSE_STATE_PICTURE /* Picture start seen. */ }; |