~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

Viewing changes to erts/etc/common/dialyzer.c

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090215164252-q5x4rcf8a5pbesb1
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
327
327
 
328
328
    status = my_spawnvp(argv)/*_spawnvp(_P_WAIT,progname,argv)*/;
329
329
    if (status == -1) {
330
 
        fprintf(stderr, "erlc: Error executing '%s': %d", progname, 
 
330
        fprintf(stderr, "dialyzer: Error executing '%s': %d", progname, 
331
331
                GetLastError());
332
332
    }
333
333
    return status;
347
347
    va_start(ap, format);
348
348
    vsprintf(sbuf, format, ap);
349
349
    va_end(ap);
350
 
    fprintf(stderr, "erlc: %s\n", sbuf);
 
350
    fprintf(stderr, "dialyzer: %s\n", sbuf);
351
351
    exit(1);
352
352
}
353
353