瀏覽代碼

char* table -> const char* table

Jan Janak 21 年之前
父節點
當前提交
ebdd27d581
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      db/db_con.h

+ 1 - 1
db/db_con.h

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