Skip to content

Commit ab2c1b3

Browse files
clang-format
1 parent a7a3142 commit ab2c1b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/fastly/builtins/cache-core.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ bool CacheEntry::body(JSContext *cx, unsigned argc, JS::Value *vp) {
616616
// Reject cases where the start is greater than the end.
617617
// Ideally this would be a host-side check... but we didn't do it there to begin with,
618618
// so we couple it to an SDK/runtime upgrade.
619-
if(!start_val.isUndefined() && !end_val.isUndefined() && options.end > options.start) {
619+
if (!start_val.isUndefined() && !end_val.isUndefined() && options.end > options.start) {
620620
JS_ReportErrorASCII(cx, "end field is before the start field");
621621
return false;
622622
}

0 commit comments

Comments
 (0)