summaryrefslogtreecommitdiff
path: root/src/jtag/driver.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:42:03 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:42:03 +0000
commit3813fda44adcea486b7308423a699f63d79273ee (patch)
treef515b454cfaea4806d0d307c1d19f1e3081482d1 /src/jtag/driver.c
parentaea6815462d3302f7f8b6576f59320d5f5985642 (diff)
downloadopenocd_libswd-3813fda44adcea486b7308423a699f63d79273ee.tar.gz
openocd_libswd-3813fda44adcea486b7308423a699f63d79273ee.tar.bz2
openocd_libswd-3813fda44adcea486b7308423a699f63d79273ee.tar.xz
openocd_libswd-3813fda44adcea486b7308423a699f63d79273ee.zip
- Fixes '==' whitespace
- Replace ')\(==\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(==\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2371 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag/driver.c')
-rw-r--r--src/jtag/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/driver.c b/src/jtag/driver.c
index 1e9af54b..c3d63067 100644
--- a/src/jtag/driver.c
+++ b/src/jtag/driver.c
@@ -476,7 +476,7 @@ void interface_jtag_add_callback4(jtag_callback_t callback, jtag_callback_data_t
entry->data2=data2;
entry->data3=data3;
- if (jtag_callback_queue_head==NULL)
+ if (jtag_callback_queue_head == NULL)
{
jtag_callback_queue_head=entry;
jtag_callback_queue_tail=entry;