summaryrefslogtreecommitdiff
path: root/files.c
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2017-01-30 23:30:22 +0100
committerRobert Swiecki <robert@swiecki.net>2017-01-30 23:30:22 +0100
commit731f295c2fce3662e2a7de1c94eab7e44e35c23d (patch)
tree60f946397cedb1a30d9194e491852af45dfd3ddd /files.c
parent4b61dbf10bf6972ea49172ead169cf02fcf2561c (diff)
downloadhonggfuzz-731f295c2fce3662e2a7de1c94eab7e44e35c23d.tar.gz
files: typo
Diffstat (limited to 'files.c')
-rw-r--r--files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/files.c b/files.c
index 9cd5ac7b..b08cc08c 100644
--- a/files.c
+++ b/files.c
@@ -65,7 +65,7 @@ bool files_writeBufToFile(char *fileName, uint8_t * buf, size_t fileSz, int flag
{
int fd = open(fileName, flags, 0644);
if (fd == -1) {
- PLOG_W("Couldn't open '%s' for R/O", fileName);
+ PLOG_W("Couldn't open '%s' for R/W", fileName);
return false;
}
defer {