diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:49:06 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:49:06 +0000 |
commit | c493543fc93cb693abab3146e08314b63d137470 (patch) | |
tree | b6cf56fb5a2cc0d0f7460bae8bd3acec8ceca6f8 /src/pld | |
parent | dc575dc5bf8cb597a0e9a47794744ae6b1928087 (diff) | |
download | openocd_libswd-c493543fc93cb693abab3146e08314b63d137470.tar.gz openocd_libswd-c493543fc93cb693abab3146e08314b63d137470.tar.bz2 openocd_libswd-c493543fc93cb693abab3146e08314b63d137470.tar.xz openocd_libswd-c493543fc93cb693abab3146e08314b63d137470.zip |
- Replace '){' with ') {'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2378 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/pld')
-rw-r--r-- | src/pld/xilinx_bit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pld/xilinx_bit.c b/src/pld/xilinx_bit.c index 73d61237..c766805f 100644 --- a/src/pld/xilinx_bit.c +++ b/src/pld/xilinx_bit.c @@ -96,7 +96,7 @@ int xilinx_read_bit_file(xilinx_bit_file_t *bit_file, char *filename) return ERROR_PLD_FILE_LOAD_FAILED; } - if (input_stat.st_size == 0){ + if (input_stat.st_size == 0) { LOG_ERROR("Empty file %s", filename); return ERROR_PLD_FILE_LOAD_FAILED; } |