With threaded binaries, it can be quite annoying to see single line
outputs of "done", as I'm experiencing while debugging the linkshare
testcase. At a minimum, I think, since this is a DEBUG_CONT(), we should
add ellipses.

Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]>

diff --git a/elflink.c b/elflink.c
index 82e96a5..b006287 100644
--- a/elflink.c
+++ b/elflink.c
@@ -577,14 +577,14 @@ static int prepare_segment(struct seg_in
        DEBUG("Mapped hugeseg at %p. Copying %#0lx bytes from %p...\n",
              p, seg->filesz, seg->vaddr);
        memcpy(p, seg->vaddr, seg->filesz);
-       DEBUG_CONT("done\n");
+       DEBUG_CONT("...done\n");
 
        if (extra_end > extra_start) {
                DEBUG("Copying extra %#0lx bytes from %p...\n", 
                        (unsigned long)(extra_end - extra_start), extra_start);
                gap = extra_start - (seg->vaddr + seg->filesz);
                memcpy((p + seg->filesz + gap), extra_start, (extra_end - 
extra_start));
-               DEBUG_CONT("done\n");
+               DEBUG_CONT("...done\n");
        }
 
        munmap(p, size);

-- 
Nishanth Aravamudan <[EMAIL PROTECTED]>
IBM Linux Technology Center

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Libhugetlbfs-devel mailing list
Libhugetlbfs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libhugetlbfs-devel

Reply via email to