Fix typos

PR <https://github.com/Genymobile/scrcpy/pull/927>

Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
senta2006 2019-11-15 17:44:24 +09:00 committed by Romain Vimont
parent 601b0fecdd
commit 7aed5d5b60
2 changed files with 3 additions and 3 deletions

View file

@ -281,7 +281,7 @@ server_connect_to(struct server *server) {
server->control_socket = net_accept(server->server_socket); server->control_socket = net_accept(server->server_socket);
if (server->control_socket == INVALID_SOCKET) { if (server->control_socket == INVALID_SOCKET) {
// the video_socket will be clean up on destroy // the video_socket will be cleaned up on destroy
return false; return false;
} }

View file

@ -54,7 +54,7 @@ page at http://checkstyle.sourceforge.net/config.html -->
<module name="SuppressWarningsHolder"/> <module name="SuppressWarningsHolder"/>
<!-- Checks for imports --> <!-- Checks for imports -->
<!-- See http://checkstyle.sf.net/config_import.html --> <!-- See http://checkstyle.sf.net/config_imports.html -->
<module name="AvoidStarImport"> <module name="AvoidStarImport">
<property name="allowStaticMemberImports" value="true" /> <property name="allowStaticMemberImports" value="true" />
</module> </module>
@ -99,7 +99,7 @@ page at http://checkstyle.sourceforge.net/config.html -->
<module name="WhitespaceAround" /> <module name="WhitespaceAround" />
<!-- Modifier Checks --> <!-- Modifier Checks -->
<!-- See http://checkstyle.sf.net/config_modifiers.html --> <!-- See http://checkstyle.sf.net/config_modifier.html -->
<module name="ModifierOrder" /> <module name="ModifierOrder" />
<module name="RedundantModifier" /> <module name="RedundantModifier" />