Skip to content

Commit a2d2907

Browse files
committed
Fix env var name typo
1 parent 08978e5 commit a2d2907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

turbojpeg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ static void setCompDefaults(struct jpeg_compress_struct *cinfo,
288288
cinfo->in_color_space = pf2cs[pixelFormat];
289289
cinfo->input_components = tjPixelSize[pixelFormat];
290290
#ifndef NO_GETENV
291-
if (!GETENV_S(env, 7, "TJ_REVERTe") && !strcmp(env, "1"))
291+
if (!GETENV_S(env, 7, "TJ_REVERT") && !strcmp(env, "1"))
292292
cinfo->master->compress_profile=JCP_FASTEST;
293293
#endif
294294
jpeg_set_defaults(cinfo);

0 commit comments

Comments
 (0)