Author: jonathan
Date: Sat Oct 15 12:38:43 2005
New Revision: 9489

Modified:
   trunk/src/jit_debug_xcoff.c
Log:
Fix another reference to now removed filename member of PackFile_Debug

Modified: trunk/src/jit_debug_xcoff.c
==============================================================================
--- trunk/src/jit_debug_xcoff.c (original)
+++ trunk/src/jit_debug_xcoff.c Sat Oct 15 12:38:43 2005
@@ -257,7 +257,8 @@ Parrot_jit_debug_stabs(Interp *interpret
 
     if (interpreter->code->debugs) {
         char *ext;
-        char *src = interpreter->code->debugs->filename;
+        char *src = Parrot_debug_pc_to_filename(interpreter,
+                interpreter->code->debugs, 0);
         pasmfile = string_make(interpreter, src, strlen(src), NULL,
                 PObj_external_FLAG);
         file = string_copy(interpreter, pasmfile);

Reply via email to