diff options
author | Eric Wetzel <thewetzel@gmail.com> | 2011-01-05 14:24:54 -0500 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-01-05 21:46:12 +0100 |
commit | a665ef716a9a90c30fb15e1f979845b3438a7251 (patch) | |
tree | 9f5b7f916393d21b2644541bc5e755f0233f96b1 /src/helper | |
parent | 0cd84000daab056dea61eb9d60cca538a3716acd (diff) | |
download | openocd_libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.tar.gz openocd_libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.tar.bz2 openocd_libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.tar.xz openocd_libswd-a665ef716a9a90c30fb15e1f979845b3438a7251.zip |
nit: do not add \n at end of LOG_ERROR
Fixed in many other places, and submitted in response to Øyvind's invitation.
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/ioutil.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/helper/ioutil.c b/src/helper/ioutil.c index 60064abc..211c4ba6 100644 --- a/src/helper/ioutil.c +++ b/src/helper/ioutil.c @@ -65,19 +65,19 @@ int loadFile(const char *fileName, void **data, size_t *len) pFile = fopen(fileName,"rb"); if (pFile == NULL) { - LOG_ERROR("Can't open %s\n", fileName); + LOG_ERROR("Can't open %s", fileName); return ERROR_FAIL; } if (fseek(pFile, 0, SEEK_END) != 0) { - LOG_ERROR("Can't open %s\n", fileName); + LOG_ERROR("Can't open %s", fileName); fclose(pFile); return ERROR_FAIL; } long fsize = ftell(pFile); if (fsize == -1) { - LOG_ERROR("Can't open %s\n", fileName); + LOG_ERROR("Can't open %s", fileName); fclose(pFile); return ERROR_FAIL; } @@ -85,14 +85,14 @@ int loadFile(const char *fileName, void **data, size_t *len) if (fseek(pFile, 0, SEEK_SET) != 0) { - LOG_ERROR("Can't open %s\n", fileName); + LOG_ERROR("Can't open %s", fileName); fclose(pFile); return ERROR_FAIL; } *data = malloc(*len + 1); if (*data == NULL) { - LOG_ERROR("Can't open %s\n", fileName); + LOG_ERROR("Can't open %s", fileName); fclose(pFile); return ERROR_FAIL; } @@ -101,7 +101,7 @@ int loadFile(const char *fileName, void **data, size_t *len) { fclose(pFile); free(*data); - LOG_ERROR("Can't open %s\n", fileName); + LOG_ERROR("Can't open %s", fileName); return ERROR_FAIL; } fclose(pFile); |