Fix two typos
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@281 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-headers/include/excpt.h b/mingw-w64-headers/include/excpt.h
index f9235f4..8fc4c4c 100644
--- a/mingw-w64-headers/include/excpt.h
+++ b/mingw-w64-headers/include/excpt.h
@@ -99,14 +99,14 @@
: : : "%eax");
#elif defined(__x86_64)
#define __try1(pHandler) \
- __asm__ ("pushq %0;pushq %%gs:0;movq %%rsp,%%fs:0;" : : "g" (pHandler));
+ __asm__ ("pushq %0;pushq %%fs:0;movq %%rsp,%%fs:0;" : : "g" (pHandler));
#define __except1 \
__asm__ ("movq (%%rsp),%%rax;movq %%rax,%%fs:0;addq $16,%%rsp;" \
: : : "%rax");
#else
#define __try1(pHandler)
-#define __execpt1
+#define __except1
#endif
#ifdef __cplusplus