Changeset 2755

Show
Ignore:
Timestamp:
04/21/06 14:36:21
Author:
chipx86
Message:

Patch by jensgr to fix some C99 usage in the tests code.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libnotify/ChangeLog

    r2754 r2755  
     1Fri Apr 21 14:35:30 PDT 2006  Christian Hammond <chipx86@chipx86.com> 
     2 
     3    * tests/test-server-info.c: 
     4    * NEWS: 
     5      - Patch by jensgr to fix some C99 usage in the tests code. 
     6 
    17Fri Apr 21 14:21:47 PDT 2006  Christian Hammond <chipx86@chipx86.com> 
    28 
  • trunk/libnotify/NEWS

    r2754 r2755  
    44      -T, --type to -c, --category. This also fixes assertions when calling 
    55      notify-send "". (Bug #41) 
     6    * Patch by jensgr to fix some C99 usage. (Bug #44) 
    67 
    78version 0.3.2 (23-January-2006): 
  • trunk/libnotify/tests/test-server-info.c

    r2432 r2755  
    2727main(int argc, char **argv) 
    2828{ 
    29     notify_init("TestCaps"); 
    3029    GList *l, *caps; 
    3130    char *name, *vendor, *version, *spec_version; 
     31 
     32    notify_init("TestCaps"); 
    3233 
    3334    if (!notify_get_server_info(&name, &vendor, &version, &spec_version))