Skip to content

Commit

Permalink
change the eprintln message
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyi98 committed Aug 24, 2024
1 parent 0f39beb commit b74a9d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlib/v/gen/c/coutput_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,13 @@ fn should_skip(relpath string) bool {
}
$if !msvc {
if relpath.contains('_msvc_windows.vv') {
eprintln('> skipping ${relpath} on gcc')
eprintln('> skipping ${relpath} on !msvc')
return true
}
}
$if !gcc {
if relpath.contains('_gcc_windows.vv') {
eprintln('> skipping ${relpath} on msvc')
eprintln('> skipping ${relpath} on !gcc')
return true
}
}
Expand Down

0 comments on commit b74a9d4

Please sign in to comment.