diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-28 12:20:16 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-28 12:20:16 +0000 |
commit | a99d842a5291a0cbf0d38ed8cedc38109b9494a9 (patch) | |
tree | 3c6c269feb5cde62ae465f62f5fbd189956099b8 | |
parent | b2558adb155bdc6510d63e0d8062d453e8591dc5 (diff) | |
download | xine-lib-a99d842a5291a0cbf0d38ed8cedc38109b9494a9.tar.gz xine-lib-a99d842a5291a0cbf0d38ed8cedc38109b9494a9.tar.bz2 |
fix macro
CVS patchset: 4970
CVS date: 2003/05/28 12:20:16
-rw-r--r-- | src/xine-engine/post.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/post.h b/src/xine-engine/post.h index 71339584c..f00b55f67 100644 --- a/src/xine-engine/post.h +++ b/src/xine-engine/post.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: post.h,v 1.7 2003/05/28 04:26:36 miguelfreitas Exp $ + * $Id: post.h,v 1.8 2003/05/28 12:20:16 miguelfreitas Exp $ * * post plugin definitions * @@ -165,7 +165,7 @@ static param_t __temp_s; \ static xine_post_api_parameter_t __temp_p[] = { #define PARAM_ITEM( param_type, var, enumv, min, max, readonly, descr ) \ -{ param_type, "##var", sizeof(__temp_s.var), \ +{ param_type, #var, sizeof(__temp_s.var), \ (char *)&__temp_s.var-(char *)&__temp_s, enumv, min, max, readonly, descr }, #define END_PARAM_DESCR( name ) \ |