diff options
author | unknown <paul@ice.local> | 2004-03-01 17:25:21 -0600 |
---|---|---|
committer | unknown <paul@ice.local> | 2004-03-01 17:25:21 -0600 |
commit | 1c60073e14f76ca1bb0fc0173c6db14092086488 (patch) | |
tree | 3847a654326422acded92341d2cba459d6e5ad30 /include | |
parent | ea023a3020b8a1a72390469ffb3bac85e15ab525 (diff) | |
download | mariadb-git-1c60073e14f76ca1bb0fc0173c6db14092086488.tar.gz |
Fix bruxism-inducing typo so I can sleep at night.
Diffstat (limited to 'include')
-rw-r--r-- | include/my_global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_global.h b/include/my_global.h index a8078f579ee..2a82173979d 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -692,7 +692,7 @@ typedef long long my_ptrdiff_t; #define ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double)) /* Size to make adressable obj. */ #define ALIGN_PTR(A, t) ((t*) MY_ALIGN((A),sizeof(t))) - /* Offset of filed f in structure t */ + /* Offset of field f in structure t */ #define OFFSET(t, f) ((size_t)(char *)&((t *)0)->f) #define ADD_TO_PTR(ptr,size,type) (type) ((byte*) (ptr)+size) #define PTR_BYTE_DIFF(A,B) (my_ptrdiff_t) ((byte*) (A) - (byte*) (B)) |