Skip to content

Commit bf0740b

Browse files
committed
Whitespace
1 parent 0d537cd commit bf0740b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/scripts/interop.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ function interop(argc, argv)
1313
end
1414

1515
# Attempt to compile
16-
path = compile_executable(interop, (Int64, Ptr{Ptr{UInt8}}), "./",cflags=`-ldl -lm`)
16+
path = compile_executable(interop, (Int64, Ptr{Ptr{UInt8}}), "./", cflags=`-ldl -lm`)

test/scripts/wasm.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ fib(n) = n <= 1 ? n : fib(n - 1) + fib(n - 2)
1313

1414
target=StaticTarget("wasm32","","")
1515

16-
StaticCompiler.generate_obj(fib, Tuple{Int64}, "./test", target=target)
16+
StaticCompiler.generate_obj(fib, Tuple{Int64}, "./test", target=target)

0 commit comments

Comments
 (0)