Description:
added .gitignore to hold empty dirs, fixed deprecation warnings on const char* for box.cc
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@379 6386c4cd-e34a-4fa8-8920-d93eb39b512e
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r177:5f8c24384d1c - - 4 files changed: 6 inserted, 2 deleted
@@ -0,0 +1,1 | |||
|
1 | + [^.]* |
@@ -0,0 +1,1 | |||
|
1 | + [^.]* |
@@ -109,7 +109,7 | |||
|
109 | 109 | } |
|
110 | 110 | |
|
111 | 111 | static void NONRET __attribute__((format(printf,1,2))) |
|
112 | - die(char *msg, ...) | |
|
112 | + die(const char *msg, ...) | |
|
113 | 113 | { |
|
114 | 114 | va_list args; |
|
115 | 115 | va_start(args, msg); |
@@ -119,7 +119,7 | |||
|
119 | 119 | } |
|
120 | 120 | |
|
121 | 121 | static void __attribute__((format(printf,1,2))) |
|
122 | - log(char *msg, ...) | |
|
122 | + log(const char *msg, ...) | |
|
123 | 123 | { |
|
124 | 124 | va_list args; |
|
125 | 125 | va_start(args, msg); |
You need to be logged in to leave comments.
Login now