pbgrslg

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: VisualGDB Program Output: random blank lines #10610
    pbgrslg
    Participant

    Hi

    I’m using visual GDB since few months and I observe the same issue. To be more precise this is the behavior I have :

    My program use “Log4c” library.
    – If I start my program through linux shell -> no random blank line
    – If I start debugging through VisualGDB -> no random blank line are printed in “Visual GDB remote console” but random additional blank lines appears in “Visual GDB Program Output” window.

    I agree about the issue being minor, but I have a 100% repro any time I run any program (C or C++, using \r or \r\n end of line)

    This simple example show additional blank line in Visual GDB Program Output for each call to printf (no problem in remote console as usual)
    int main(void)
    {
    while (1)
    {
    printf(“test\n”);
    sleep(1);
    }
    return 0;
    }
    OS : Win 10
    Visual Studio 2013 & 2015
    Visual GDB version 5.2 (build 1374)

    • This reply was modified 7 years, 8 months ago by pbgrslg.
Viewing 1 post (of 1 total)