Skip to content

Commit 7f451b8

Browse files
committed
KILL ME: breaking change test
1 parent 6fac01b commit 7f451b8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ dist: xenial
55
services: docker
66

77
stages:
8+
- semver-test
89
- tools-and-build-and-tier1
910
- tier2
1011

@@ -18,6 +19,7 @@ matrix:
1819
--git https://github.com/gnzlbg/rust-semverver \
1920
--branch fix_exit_code
2021
script: cargo +nightly semver --api-guidelines --target="${TARGET}"
22+
stage: semver-test
2123
- name: "Documentation"
2224
env: TARGET=x86_64-unknown-linux-gnu
2325
script: sh ci/dox.sh

src/unix/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ extern {
10881088
pub fn tcsetattr(fd: ::c_int,
10891089
optional_actions: ::c_int,
10901090
termios: *const ::termios) -> ::c_int;
1091-
pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int;
1091+
pub fn tcflow(fd: ::c_uint, action: ::c_int) -> ::c_int;
10921092
pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int;
10931093
pub fn tcgetsid(fd: ::c_int) -> ::pid_t;
10941094
pub fn tcsendbreak(fd: ::c_int, duration: ::c_int) -> ::c_int;

0 commit comments

Comments
 (0)