Changeset 2828d7d1b3f14983d09f5cfb12b4ce13c8b827ed

Show
Ignore:
Timestamp:
13/05/08 08:03:01 (5 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1210658581 +0200
git-parent:

[8e18f5c6cdc3d3dba06a3e04d1f460ee694634a4]

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

DBus : missing return argument for AddTrack?

Files:

Legend:

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

    r29d8a0b r2828d7d  
    383383{ /* add the string to the playlist, and play it if the boolean is true */ 
    384384    REPLY_INIT; 
     385    OUT_ARGUMENTS; 
    385386 
    386387    DBusError error; 
     
    409410            PLAYLIST_END, true, false ); 
    410411    pl_Release( p_playlist ); 
     412 
     413    dbus_int32_t i_success = 0; 
     414    ADD_INT32( &i_success ); 
    411415 
    412416    REPLY_SEND; 
  • modules/control/dbus.h

    r3224d9b r2828d7d  
    178178"      <arg type=\"s\" direction=\"in\" />\n" 
    179179"      <arg type=\"b\" direction=\"in\" />\n" 
     180"      <arg type=\"i\" direction=\"out\" />\n" 
    180181"    </method>\n" 
    181182"    <method name=\"DelTrack\">\n"