1. 14 Jun, 2016 2 commits
  2. 13 Jun, 2016 3 commits
  3. 12 Jun, 2016 3 commits
  4. 09 Jun, 2016 1 commit
  5. 03 Jun, 2016 2 commits
  6. 01 Jun, 2016 15 commits
  7. 31 May, 2016 8 commits
  8. 30 May, 2016 3 commits
  9. 25 May, 2016 1 commit
  10. 13 May, 2016 2 commits
    • Mihai Moldovan's avatar
    • Mike Gabriel's avatar
      hw/nxagent/Display.c: Avoid incompatible pointer type. · 52dc4960
      Mike Gabriel authored
       Amends the following compiler warning
      
       Display.c: In function ‘nxagentMakeIcon’:
       Display.c:1949:18: warning: assignment from incompatible pointer type
            agentIconData=x2goagentIconData;
                        ^
       Display.c:1954:18: warning: assignment from incompatible pointer type
            agentIconData=nxagentIconData;
                        ^
       Display.c:2001:41: warning: passing argument 3 of ‘XpmCreatePixmapFromData’ from incompatible pointer type
                                                agentIconData,
                                                ^
       In file included from Icons.h:22:0,
                        from Display.c:67:
       X11/include/xpm_nxagent.h:242:6: note: expected ‘char **’ but argument is of type ‘char *’
        FUNC(XpmCreatePixmapFromData, int, (Display *display,
             ^
       X11/include/xpm_nxagent.h:230:32: note: in definition of macro ‘FUNC’
        #define FUNC(f, t, p) extern t f p
      52dc4960