From ef7c177ca409868a330120285a82e1ac5551b6b7 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Mon, 17 Sep 2001 23:26:43 +0000 Subject: (cmd_pstat_) alway print an endline character --- mixlib/xmix_vm_handlers.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mixlib') diff --git a/mixlib/xmix_vm_handlers.c b/mixlib/xmix_vm_handlers.c index 02c7ca9..2938bfc 100644 --- a/mixlib/xmix_vm_handlers.c +++ b/mixlib/xmix_vm_handlers.c @@ -1,7 +1,7 @@ /* -*-c-*- -------------- xmix_vm_handlers.c : * Implementation of the functions declared in xmix_vm_handlers.h * ------------------------------------------------------------------ - * $Id: xmix_vm_handlers.c,v 1.3 2001/09/12 23:14:24 jao Exp $ + * $Id: xmix_vm_handlers.c,v 1.4 2001/09/17 23:26:43 jao Exp $ * ------------------------------------------------------------------ * Copyright (C) 2001 Free Software Foundation, Inc. * @@ -1345,11 +1345,11 @@ cmd_pline_ (mix_vm_cmd_dispatcher_t *dis, const gchar *arg) if (line == 0) txt = "No such line (debug info not available)\n"; else - txt = mix_vm_cmd_dispatcher_get_src_file_line (dis, line, TRUE); + txt = mix_vm_cmd_dispatcher_get_src_file_line (dis, line, FALSE); if (txt == NULL || strlen (txt) == 0) txt = "No such line\n"; - fprintf (dis->out, "Line %ld: %s", line, txt); + fprintf (dis->out, "Line %ld: %s\n", line, txt); return TRUE; } -- cgit v1.2.3