aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
Diffstat (limited to 'test/data')
-rw-r--r--test/data/emacs-module/mod-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/emacs-module/mod-test.c b/test/data/emacs-module/mod-test.c
index f378db00cd4..5e857c048f0 100644
--- a/test/data/emacs-module/mod-test.c
+++ b/test/data/emacs-module/mod-test.c
@@ -269,7 +269,7 @@ emacs_module_init (struct emacs_runtime *ert)
269 269
270 emacs_env *env = ert->get_environment (ert); 270 emacs_env *env = ert->get_environment (ert);
271 271
272 if (env->size <= sizeof *env) 272 if (env->size < sizeof *env)
273 return 2; 273 return 2;
274 274
275#define DEFUN(lsym, csym, amin, amax, doc, data) \ 275#define DEFUN(lsym, csym, amin, amax, doc, data) \