diff options
author | jboeuf <jboeuf@users.noreply.github.com> | 2015-01-23 14:28:14 -0800 |
---|---|---|
committer | jboeuf <jboeuf@users.noreply.github.com> | 2015-01-23 14:28:14 -0800 |
commit | 10f4620e93bd1a398907e7ce3f5f1528f7be61e4 (patch) | |
tree | 6b454fc9fb40c993adba0c8d481ea0b05b5a4b1b /test/core/echo | |
parent | 1693a71abea9aaf930ad35b253cdeb16fd63f041 (diff) | |
parent | b7b9c758ed04a2de87822b5f37a993e529b84c28 (diff) |
Merge pull request #179 from ctiller/kill-printf
Remove uses of sprintf
Diffstat (limited to 'test/core/echo')
-rw-r--r-- | test/core/echo/echo_test.c | 2 | ||||
-rw-r--r-- | test/core/echo/server.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/core/echo/echo_test.c b/test/core/echo/echo_test.c index 16d381fb65..6449b2414f 100644 --- a/test/core/echo/echo_test.c +++ b/test/core/echo/echo_test.c @@ -42,10 +42,10 @@ #include <sys/wait.h> #include "src/core/iomgr/socket_utils_posix.h" +#include "src/core/support/string.h" #include <grpc/support/alloc.h> #include <grpc/support/host_port.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include "test/core/util/port.h" int test_client(const char *root, const char *host, int port) { diff --git a/test/core/echo/server.c b/test/core/echo/server.c index 35f118dc9b..57b083779c 100644 --- a/test/core/echo/server.c +++ b/test/core/echo/server.c @@ -39,11 +39,11 @@ #include <string.h> #include <time.h> +#include "src/core/support/string.h" #include "test/core/util/test_config.h" #include <grpc/support/alloc.h> #include <grpc/support/host_port.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include <grpc/support/time.h> #include "test/core/util/port.h" |