We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e4a31 commit 49837bcCopy full SHA for 49837bc
1 file changed
src/bncsutil/file.cpp
@@ -211,7 +211,7 @@ file_t file_open(const char* filename, unsigned int mode_flags)
211
data = new _file;
212
} catch (std::bad_alloc) {
213
bncsutil_debug_message_a("Failed to allocate %u bytes to hold"
214
- "file structure."), sizeof(struct _file));
+ "file structure.", sizeof(struct _file));
215
fclose(f);
216
return (file_t) 0;
217
}
@@ -221,7 +221,7 @@ file_t file_open(const char* filename, unsigned int mode_flags)
221
if (!data->filename) {
222
err = sys_error_msg();
223
224
- "filename; %s"), filename_buf_len);
+ "filename; %s", filename_buf_len);
225
free_sys_error_msg(err);
226
227
delete data;
0 commit comments