summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-09-08 09:21:33 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-09-08 09:21:33 +0000
commit1e8bf255fb7c40b33bc2f72a2019a5b9217795a5 (patch)
treeff4d81795df38aefaa562ca21683d2244d9aad2c /src
parentbc3474b65d2af1b369a47e4b54566d3e26b88325 (diff)
downloadopenocd+libswd-1e8bf255fb7c40b33bc2f72a2019a5b9217795a5.tar.gz
openocd+libswd-1e8bf255fb7c40b33bc2f72a2019a5b9217795a5.tar.bz2
openocd+libswd-1e8bf255fb7c40b33bc2f72a2019a5b9217795a5.tar.xz
openocd+libswd-1e8bf255fb7c40b33bc2f72a2019a5b9217795a5.zip
typo fixed.
git-svn-id: svn://svn.berlios.de/openocd/trunk@982 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r--src/helper/jim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/jim.c b/src/helper/jim.c
index da0f0180..7d5cc2ba 100644
--- a/src/helper/jim.c
+++ b/src/helper/jim.c
@@ -12076,7 +12076,7 @@ jim_get_s_us( jim_wide *s, jim_wide *us )
tmpres |= ft.dwLowDateTime;
/* convert to unix representation */
tmpres /= 10;
- tmpres -= DELTA_EPOC_IN_MICROSECS;
+ tmpres -= DELTA_EPOCH_IN_MICROSECS;
*s = (tmpres / 1000000ULL);
*us = (tmpres % 1000000ULL);