Ignore:
Timestamp:
Dec 19, 2021, 1:21:38 PM (4 years ago)
Author:
bird
Message:

kmk: Fixed typo in helper_drop_separator.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/function.c

    r3519 r3523  
    58845884MY_INLINE char *helper_drop_separator (char *o, unsigned int style)
    58855885{
    5886   o -= (style & Q_SEP_MASK) != Q_SEP_NL_TAB ? 2 : 1;
     5886  o -= (style & Q_SEP_MASK) != Q_SEP_NL_TAB ? 1 : 2;
    58875887  *o = '\0'; /* not strictly necessary */
    58885888  return o;
Note: See TracChangeset for help on using the changeset viewer.