Changeset 098376e for global.c


Ignore:
Timestamp:
Jan 24, 2009, 8:53:45 PM (15 years ago)
Author:
Evan Broder <broder@mit.edu>
Children:
92f8fc2
Parents:
209ea94 (diff), b940b91 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merge commit 'barnowl-1.0.4.1' into debian
File:
1 edited

Legend:

Unmodified
Added
Removed
  • global.c

    rda466e0 r5547211b  
    139139  g->recwin=newwin(g->recwinlines, cols, 0, 0);
    140140  if (g->recwin==NULL) {
    141     owl_function_debugmsg("_owl_global_setup_windows: newwin returned NULL\n", g->recwinlines, cols);
     141    owl_function_debugmsg("_owl_global_setup_windows: newwin returned NULL\n");
    142142    endwin();
    143143    exit(50);
     
    570570  strcpy(g->startupargs, "");
    571571  for (i=0; i<argc; i++) {
    572     sprintf(g->startupargs, "%s%s ", g->startupargs, argv[i]);
     572    sprintf(g->startupargs + strlen(g->startupargs), "%s ", argv[i]);
    573573  }
    574574  g->startupargs[strlen(g->startupargs)-1]='\0';
Note: See TracChangeset for help on using the changeset viewer.