Changes in / [530c51c:785ee77]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    r5c2ef5b rca749a9  
    24982498  } else if(argc == 2) {
    24992499    /* Handle :unpunt <number> */
    2500     if (unpunt && (i = atoi(argv[1])) > 0) {
     2500    if(unpunt && (i=atoi(argv[1])) !=0) {
    25012501      i--;      /* Accept 1-based indexing */
    25022502      if (i < fl->len) {
  • messagelist.c

    r5c2ef5b rfc8a87a  
    2222void *owl_messagelist_get_element(const owl_messagelist *ml, int n)
    2323{
    24   if (n >= ml->list->len) return NULL;
    2524  return ml->list->pdata[n];
    2625}
Note: See TracChangeset for help on using the changeset viewer.