- Timestamp:
- Apr 13, 2012, 9:49:54 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
Ohana/src/libdvo/include/dvo.h (modified) (1 diff)
-
Ohana/src/libdvo/src/HostTable.c (modified) (1 diff)
-
Ohana/src/libkapa/src/bDrawFuncs.c (modified) (1 diff)
-
Ohana/src/libohana/include/ohana.h (modified) (2 diffs)
-
Ohana/src/libohana/src/rconnect.c (modified) (1 diff)
-
ippTools/src/addtool.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libdvo/include/dvo.h
r33649 r33779 268 268 int Nhosts; 269 269 HostInfo *hosts; 270 unsignedshort *index;270 short *index; 271 271 } HostTable; 272 272 -
trunk/Ohana/src/libdvo/src/HostTable.c
r33649 r33779 121 121 table->hosts = hosts; 122 122 123 ALLOCATE (table->index, unsignedshort, maxID + 1);123 ALLOCATE (table->index, short, maxID + 1); 124 124 for (i = 0; i <= maxID; i++) table->index[i] = -1; 125 125 -
trunk/Ohana/src/libkapa/src/bDrawFuncs.c
r33650 r33779 77 77 78 78 void bDrawSetStyle (bDrawBuffer *buffer, bDrawColor color, int lw, int lt) { 79 if (color >= 0) {79 // if (color >= 0) { 80 80 buffer->bColor = color; 81 81 buffer->bColor_R = buffer->palette[color].red; 82 82 buffer->bColor_G = buffer->palette[color].green; 83 83 buffer->bColor_B = buffer->palette[color].blue; 84 }84 //} 85 85 buffer->bWeight = lw; 86 86 buffer->bType = lt; -
trunk/Ohana/src/libohana/include/ohana.h
r33646 r33779 128 128 # endif 129 129 130 # if defined(darwin_x86) || defined(_DARWIN_C_SOURCE) 130 # if defined(darwin_x86) || defined(_DARWIN_C_SOURCE) || defined(__APPLE__) 131 131 # define BYTE_SWAP 132 132 # endif … … 164 164 // # endif 165 165 # ifdef darwin_x86 166 # define OFF_T_FMT "%lld" 167 # endif 168 // x86_64 for mac os x 10.7 (lion) 169 # ifdef __x86_64 166 170 # define OFF_T_FMT "%lld" 167 171 # endif -
trunk/Ohana/src/libohana/src/rconnect.c
r33646 r33779 2 2 # include <sys/types.h> 3 3 # include <sys/wait.h> 4 # include <signal.h> //man page says include this for kill 4 5 5 6 # define DEBUG 1 -
trunk/ippTools/src/addtool.c
r33705 r33779 1417 1417 psString query = NULL; 1418 1418 psStringAppend(&query, bare_query, minidvodb_group); 1419 psStringAppend(&query, where_string);1419 psStringAppend(&query," %s ", where_string); 1420 1420 1421 1421
Note:
See TracChangeset
for help on using the changeset viewer.
