Skip to content

Commit

Permalink
tty: remove unnecessary semi-colon (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
aloisklink authored Aug 25, 2023
1 parent 87e5440 commit 0c866ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uvw/tty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ UVW_INLINE std::shared_ptr<details::reset_mode_memo> tty_handle::mode_memo_handl
auto shared = weak.lock();
if(!shared) { weak = shared = std::make_shared<details::reset_mode_memo>(); }
return shared;
};
}

UVW_INLINE int tty_handle::init() {
return leak_if(uv_tty_init(parent().raw(), raw(), fd, rw));
Expand Down

0 comments on commit 0c866ba

Please sign in to comment.