diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2013-06-02 21:48:38 +0200 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-06-02 16:40:06 -0700 |
commit | 02fd80afd5d2416301e5166e202ff859902c7987 (patch) | |
tree | 3536b5aa08c34bc01b35ec1e0cf704f971ea80f5 | |
parent | e83d6d66ea28b0aaa7e574dd2471121a5250b934 (diff) |
Add missing comma to fix DEBUG build.
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/ResConfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ResConfig.c b/src/ResConfig.c index 161366a..152d9cf 100644 --- a/src/ResConfig.c +++ b/src/ResConfig.c @@ -981,7 +981,7 @@ _XtResourceConfigurationEH ( resource = XtNewString (data_ptr); value = XtNewString (data_value); #ifdef DEBUG - fprintf (stderr, "resource_len=%d\n" + fprintf (stderr, "resource_len=%d\n", resource_len); fprintf (stderr, "resource = %s\t value = %s\n", resource, value); |