lbxproxy: Changes to 'master'

Paulo Cesar Pereira de Andrade pcpa at kemper.freedesktop.org
Fri Jan 16 14:11:31 PST 2009


 .gitignore          |    4 
 Makefile.am         |    2 
 configure.ac        |    9 +
 di/atomcache.c      |   31 +----
 di/cache.c          |   47 +-------
 di/cmap.c           |  179 ++++++++++-----------------------
 di/cmaputil.c       |  130 +++++------------------
 di/dispatch.c       |   44 ++------
 di/extensions.c     |   46 ++------
 di/gfx.c            |  177 +++++++++++---------------------
 di/init.c           |   19 +--
 di/lbxfuncs.c       |  147 ++++++++-------------------
 di/lbxutil.c        |   68 +++---------
 di/main.c           |   11 --
 di/options.c        |  223 +++++++++++++++++------------------------
 di/pm.c             |   38 ++-----
 di/props.c          |   30 +----
 di/reqtype.c        |    8 -
 di/resource.c       |   51 +++------
 di/swaprep.c        |   68 +++---------
 di/swapreq.c        |   65 +++--------
 di/tables.c         |   56 +---------
 di/tags.c           |   46 +-------
 di/unsquish.c       |   10 -
 di/utils.c          |   92 +++++-----------
 di/wire.c           |  184 +++++++++------------------------
 di/zeropad.c        |  282 ++++++++++++++++++++++++++--------------------------
 include/cache.h     |    2 
 include/lbx.h       |  140 +++++++++----------------
 include/lbxext.h    |   19 +++
 include/os.h        |   24 +---
 include/proxyopts.h |    4 
 include/tags.h      |    4 
 include/util.h      |    4 
 include/wire.h      |    8 -
 os/WaitFor.c        |    4 
 os/connection.c     |  101 ++++++------------
 os/io.c             |   84 +++++----------
 os/lbxproxytrans.c  |    8 -
 os/osdep.h          |   21 ++-
 os/osinit.c         |    3 
 41 files changed, 887 insertions(+), 1606 deletions(-)

New commits:
commit c39bd2f1085bb34493dc6e5ad8328ee106619e26
Author: Paulo Cesar Pereira de Andrade <pcpa at mandriva.com.br>
Date:   Fri Jan 16 19:38:12 2009 -0200

    Ansification and compile warning fixes.
    
      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
    make distcheck and all gcc 4.3 and sparse warnings.
    
      To avoid warnings, several changes in the pseudo patch format
    
    - static int foo();
    - static int foo(type *arg) { ... }
    + static int foo(void *);
    + static int foo(void *_arg) { type *arg = _arg; ... }
    
    were made, and all function pointer structure fields and arguments
    were also "ansified".



More information about the xorg-commit mailing list