From: gorshkov Date: Mon, 30 Oct 2006 07:51:13 +0000 (+0000) Subject: gst/gstinfo.h: _declspec should be __declspec (two underscores, not one). Fixes 366572. X-Git-Tag: RELEASE-0_10_11~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=656c52983319df5dfe0abe82eee441357ca23e91;p=platform%2Fupstream%2Fgstreamer.git gst/gstinfo.h: _declspec should be __declspec (two underscores, not one). Fixes 366572. Original commit message from CVS: Patch by: gorshkov * gst/gstinfo.h: _declspec should be __declspec (two underscores, not one). Fixes 366572. --- diff --git a/ChangeLog b/ChangeLog index 17b1b45..9be4cec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-10-30 Wim Taymans + + Patch by: gorshkov + + * gst/gstinfo.h: + _declspec should be __declspec (two underscores, not one). Fixes 366572. + 2006-10-28 Tim-Philipp Müller Patch by: Kjartan Maraas diff --git a/gst/gstinfo.h b/gst/gstinfo.h index 2413d54..57caa6a 100644 --- a/gst/gstinfo.h +++ b/gst/gstinfo.h @@ -325,7 +325,7 @@ void gst_debug_unset_threshold_for_name (const gchar * name); #define GST_DEBUG_CATEGORY_EXTERN(cat) extern GstDebugCategory *cat #else #define GST_DEBUG_CATEGORY_EXTERN(cat) \ - extern _declspec (dllimport) GstDebugCategory *cat; + extern __declspec (dllimport) GstDebugCategory *cat; #endif /**