Browse Source

char* table -> const char* table

Jan Janak 21 năm trước cách đây
mục cha
commit
ebdd27d581
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      db/db_con.h

+ 1 - 1
db/db_con.h

@@ -37,7 +37,7 @@
  * handle
  */
 typedef struct {
-	char* table;           /* Default table to use */
+	const char* table;     /* Default table to use */
 	unsigned long tail;    /* Variable length tail
 				* database module specific */    
 } db_con_t;