Browse Source

64-bit cleanup: db_con->tail properly aligned

Jan Janak 22 years ago
parent
commit
6f0beca17c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      db/db_con.h

+ 1 - 1
db/db_con.h

@@ -39,7 +39,7 @@
 typedef struct {
 	char* table;           /* Default table to use */
 	int connected;         /* 1 if database is connected */
-	unsigned char tail[1]; /* Variable length tail
+	unsigned long tail[1]; /* Variable length tail
 				* database module specific */    
 } db_con_t;