summaryrefslogtreecommitdiff
path: root/src/flash/nand/s3c24xx.c
diff options
context:
space:
mode:
authorEric 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
commita665ef716a9a90c30fb15e1f979845b3438a7251 (patch)
tree9f5b7f916393d21b2644541bc5e755f0233f96b1 /src/flash/nand/s3c24xx.c
parent0cd84000daab056dea61eb9d60cca538a3716acd (diff)
downloadopenocd+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/flash/nand/s3c24xx.c')
-rw-r--r--src/flash/nand/s3c24xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nand/s3c24xx.c b/src/flash/nand/s3c24xx.c
index eb20f35c..2fa18de3 100644
--- a/src/flash/nand/s3c24xx.c
+++ b/src/flash/nand/s3c24xx.c
@@ -38,7 +38,7 @@ S3C24XX_DEVICE_COMMAND()
struct s3c24xx_nand_controller *s3c24xx_info;
s3c24xx_info = malloc(sizeof(struct s3c24xx_nand_controller));
if (s3c24xx_info == NULL) {
- LOG_ERROR("no memory for nand controller\n");
+ LOG_ERROR("no memory for nand controller");
return -ENOMEM;
}