summaryrefslogtreecommitdiff
path: root/gl/tests
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2011-11-09 00:43:58 +0100
committerSimon Josefsson <simon@josefsson.org>2011-11-09 00:48:15 +0100
commit21caff388b360fca7a774ed5206447ba9ebf4f94 (patch)
tree0ff149b18a77253e9cb9f5a6a26102cc7b2d83f4 /gl/tests
parentfe0a92df94869abd48a8e7a576f9b81867a9c420 (diff)
downloadgnutls-21caff388b360fca7a774ed5206447ba9ebf4f94.tar.gz
Simplify static library renaming hack.
Diffstat (limited to 'gl/tests')
-rw-r--r--gl/tests/test-read-file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gl/tests/test-read-file.c b/gl/tests/test-read-file.c
index 23c1b750f8..de7a0bb9f3 100644
--- a/gl/tests/test-read-file.c
+++ b/gl/tests/test-read-file.c
@@ -37,7 +37,7 @@ main (void)
if (stat (FILE1, &statbuf) >= 0)
{
size_t len;
- char *out = gl_read_file (FILE1, &len);
+ char *out = read_file (FILE1, &len);
if (!out)
{
@@ -79,7 +79,7 @@ main (void)
if (stat (FILE2, &statbuf) >= 0)
{
size_t len;
- char *out = gl_read_file (FILE2, &len);
+ char *out = read_file (FILE2, &len);
if (!out)
{