diff options
author | dscho <dscho> | 2003-02-09 15:04:00 +0000 |
---|---|---|
committer | dscho <dscho> | 2003-02-09 15:04:00 +0000 |
commit | 5030d53ff08665d27e388244aa22b272716240bc (patch) | |
tree | 64aa4ced924efed1e8c66579fce4e93ef97499d6 /contrib/x11vnc.c | |
parent | f86f9cec24a85bff17b4635f09c00513a2c356c3 (diff) | |
download | libtdevnc-5030d53ff08665d27e388244aa22b272716240bc.tar.gz libtdevnc-5030d53ff08665d27e388244aa22b272716240bc.zip |
converted CARD{8,16,32} to uint{8,16,32}_t and included support for stdint.h
Diffstat (limited to 'contrib/x11vnc.c')
-rw-r--r-- | contrib/x11vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/x11vnc.c b/contrib/x11vnc.c index ed7689f..e7c6fd2 100644 --- a/contrib/x11vnc.c +++ b/contrib/x11vnc.c @@ -461,7 +461,7 @@ void initialize_screen(int *argc, char **argv, XImage *fb) { screen->paddedWidthInBytes = fb->bytes_per_line; screen->rfbServerFormat.bitsPerPixel = fb->bits_per_pixel; screen->rfbServerFormat.depth = fb->depth; - screen->rfbServerFormat.trueColour = (CARD8) TRUE; + screen->rfbServerFormat.trueColour = (uint8_t) TRUE; if ( screen->rfbServerFormat.bitsPerPixel == 8 ) { /* 8 bpp */ |