diff options
| author | dearblue <[email protected]> | 2019-09-25 23:07:05 +0900 |
|---|---|---|
| committer | dearblue <[email protected]> | 2019-09-25 23:07:05 +0900 |
| commit | 5ce1bec1bc0af3a90e730665c9e1adbabb381a53 (patch) | |
| tree | 720ba99c17d6f2e0c681c6f9f1d35893f1efa9da | |
| parent | 3c1a2612e739a73c4c1be090aecfcbd2e9c0a7f8 (diff) | |
| download | mruby-5ce1bec1bc0af3a90e730665c9e1adbabb381a53.tar.gz mruby-5ce1bec1bc0af3a90e730665c9e1adbabb381a53.zip | |
Add "fall through"
| -rw-r--r-- | mrbgems/mruby-sprintf/src/sprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mrbgems/mruby-sprintf/src/sprintf.c b/mrbgems/mruby-sprintf/src/sprintf.c index c8d51962e..5e0a9f525 100644 --- a/mrbgems/mruby-sprintf/src/sprintf.c +++ b/mrbgems/mruby-sprintf/src/sprintf.c @@ -845,6 +845,7 @@ retry: case 'd': case 'i': sign = 1; + /* fall through */ default: base = 10; break; } |
