Changeset 83b11b7d1bf3372b39dfaa35a7dd1624530cd85f

Show
Ignore:
Timestamp:
07/11/09 16:04:38 (3 years ago)
Author:
Nedko Arnaudov <nedko@…>
Children:
8c53171ad94ee9d627dcb2209acd6570af25ab4f
Parents:
97022e24935605949cb7664b5d9193ed7c1c499c
git-committer:
Nedko Arnaudov <nedko@arnaudov.name> / 2009-07-11T16:04:38Z+0300
Message:

fix error printfs (add newline)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lv2_ui.c

    r97022e2 r83b11b7  
    304304  if (pipe(pipe1) != 0) 
    305305  { 
    306     fprintf(stderr, "pipe1 creation failed."); 
     306    fprintf(stderr, "pipe1 creation failed.\n"); 
    307307  } 
    308308 
    309309  if (pipe(pipe2) != 0) 
    310310  { 
    311     fprintf(stderr, "pipe2 creation failed."); 
     311    fprintf(stderr, "pipe2 creation failed.\n"); 
    312312  } 
    313313 
     
    365365 
    366366    execvp(argv[0], (char **)argv); 
    367     fprintf(stderr, "exec of UI failed: %s", strerror(errno)); 
     367    fprintf(stderr, "exec of UI failed: %s\n", strerror(errno)); 
    368368    exit(1); 
    369369  case -1: 
    370     fprintf(stderr, "fork() failed to create new process for plugin UI"); 
     370    fprintf(stderr, "fork() failed to create new process for plugin UI\n"); 
    371371    goto fail_free_control; 
    372372  }