Changeset 2aadf2b in mainline


Ignore:
Timestamp:
2011-08-16T19:17:46Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
903bd436
Parents:
49160c4
Message:

Minor coding style corrections.

Location:
uspace/lib/posix
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/fnmatch.c

    r49160c4 r2aadf2b  
    496496                        end = string;
    497497                } else {
    498                         end= strchrnul(string, pathname ? '/' : '\0');
     498                        end = strchrnul(string, pathname ? '/' : '\0');
    499499                }
    500500
  • uspace/lib/posix/signal.c

    r49160c4 r2aadf2b  
    312312        if ((action.sa_flags & SA_RESETHAND) && signo != SIGILL && signo != SIGTRAP) {
    313313                _signal_actions[signo] = (struct posix_sigaction) DEFAULT_HANDLER;
    314         };
     314        }
    315315
    316316        if (action.sa_flags & SA_SIGINFO) {
  • uspace/lib/posix/time.c

    r49160c4 r2aadf2b  
    329329                return tm->tm_year - 1;
    330330        }
    331         if (day > 364 + _is_leap_year(tm->tm_year)){
     331        if (day > 364 + _is_leap_year(tm->tm_year)) {
    332332                /* First week of next year. */
    333333                return tm->tm_year + 1;
     
    368368                return 53;
    369369        }
    370         if (day > 364 + _is_leap_year(tm->tm_year)){
     370        if (day > 364 + _is_leap_year(tm->tm_year)) {
    371371                /* First week of next year. */
    372372                return 1;
Note: See TracChangeset for help on using the changeset viewer.