vtest: make some functions static.

These functions are only used here.

Signed-off-by: Dave Airlie <airlied@redhat.com>
macos/master
Dave Airlie 9 years ago
parent f8b42ca393
commit 19bc426d27
  1. 4
      vtest/vtest_server.c

@ -67,7 +67,7 @@ static int vtest_open_socket(const char *path)
return -1; return -1;
} }
int wait_for_socket_accept(int sock) static int wait_for_socket_accept(int sock)
{ {
fd_set read_fds; fd_set read_fds;
int new_fd; int new_fd;
@ -86,7 +86,7 @@ int wait_for_socket_accept(int sock)
return -1; return -1;
} }
int run_renderer(int in_fd, int out_fd) static int run_renderer(int in_fd, int out_fd)
{ {
int ret; int ret;
uint32_t header[VTEST_HDR_SIZE]; uint32_t header[VTEST_HDR_SIZE];

Loading…
Cancel
Save