diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2001-09-17 23:26:43 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2001-09-17 23:26:43 +0000 |
commit | ef7c177ca409868a330120285a82e1ac5551b6b7 (patch) | |
tree | e0761e19cdcc353c4e7498d4c18a272bc776e882 /mixlib | |
parent | c9f4916f1f4024618055fc3402752f9fdeb18200 (diff) | |
download | mdk-ef7c177ca409868a330120285a82e1ac5551b6b7.tar.gz mdk-ef7c177ca409868a330120285a82e1ac5551b6b7.tar.bz2 |
(cmd_pstat_) alway print an endline character
Diffstat (limited to 'mixlib')
-rw-r--r-- | mixlib/xmix_vm_handlers.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |