~vojtech-horky/helenos/helenos-qemu

« back to all changes in this revision

Viewing changes to uspace/lib/posix/source/stdio/scanf.c

  • Committer: Vojtech Horky
  • Date: 2017-06-14 06:22:31 UTC
  • mfrom: (2103.1.569 HelenOS.mainline)
  • Revision ID: vojtechhorky@users.sourceforge.net-20170614062231-q4ui9pyxp0gs2hrl
MergeĀ mainlineĀ changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
465
465
        switch (c) {
466
466
        case 'S':
467
467
                *modifier = LMOD_l;
468
 
                /* fallthrough */
 
468
                /* Fallthrough */
469
469
        case 's':
470
470
                return 1;
471
471
        case 'C':
472
472
                *modifier = LMOD_l;
473
 
                /* fallthrough */
 
473
                /* Fallthrough */
474
474
        case 'c':
475
475
                return 1;
476
476
        case '[':