Changeset ac73a8981357037bd9131ef4cefaac52222d8198

Show
Ignore:
Timestamp:
04/05/08 00:14:07 (5 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1207347247 +0200
git-parent:

[417e2db8e9061d4b5e9e105b883a86a70f122b6e]

git-author:
Rafaël Carré <funman@videolan.org> 1207347247 +0200
Message:

Simplify macro

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/control/rc.c

    re500713 rac73a89  
    21502150static input_item_t *parse_MRL( intf_thread_t *p_intf, char *psz_mrl ) 
    21512151{ 
    2152 #define SKIPSPACE( p ) { while( *p && ( *p == ' ' || *p == '\t' ) ) p++; } 
     2152#define SKIPSPACE( p ) { while( *p == ' ' || *p == '\t' ) p++; } 
    21532153#define SKIPTRAILINGSPACE( p, d ) \ 
    21542154    { char *e=d; while( e > p && (*(e-1)==' ' || *(e-1)=='\t') ){e--;*e=0;} }