aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/ChangeLog4
-rw-r--r--tests/asschk.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index e58eef1d3..273257aba 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-17 Werner Koch <[email protected]>
+
+ * asschk.c (read_assuan): Use __func__ instead of __FUNCTION__.
+
2006-11-05 Werner Koch <[email protected]>
* asschk.c (read_assuan): Minor cleanups.
diff --git a/tests/asschk.c b/tests/asschk.c
index 356613901..176fcac6f 100644
--- a/tests/asschk.c
+++ b/tests/asschk.c
@@ -308,7 +308,7 @@ read_assuan (int fd)
{
int i;
- printf ("%s: read \"", __FUNCTION__);
+ printf ("%s: read \"", __func__);
for (i = 0; i < n; i ++)
putc (buf[i], stdout);
printf ("\"\n");