From bbb2cc80aacee2014ce070748a57df31b09b2e1a Mon Sep 17 00:00:00 2001 From: Jens Schweikhardt Date: Sat, 4 Feb 2006 14:41:27 +0000 Subject: [PATCH] s/staticly/statically/g --- bin/sh/var.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sh/var.h b/bin/sh/var.h index 90074b941ac..4eb5dc1b982 100644 --- a/bin/sh/var.h +++ b/bin/sh/var.h @@ -40,8 +40,8 @@ /* flags */ #define VEXPORT 0x01 /* variable is exported */ #define VREADONLY 0x02 /* variable cannot be modified */ -#define VSTRFIXED 0x04 /* variable struct is staticly allocated */ -#define VTEXTFIXED 0x08 /* text is staticly allocated */ +#define VSTRFIXED 0x04 /* variable struct is statically allocated */ +#define VTEXTFIXED 0x08 /* text is statically allocated */ #define VSTACK 0x10 /* text is allocated on the stack */ #define VUNSET 0x20 /* the variable is not set */ #define VNOFUNC 0x40 /* don't call the callback function */