Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: third_party/sqlite/src/tool/checkSpacing.c

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 ** This program checks for formatting problems in source code: 2 ** This program checks for formatting problems in source code:
3 ** 3 **
4 ** * Any use of tab characters 4 ** * Any use of tab characters
5 ** * White space at the end of a line 5 ** * White space at the end of a line
6 ** * Blank lines at the end of a file 6 ** * Blank lines at the end of a file
7 ** 7 **
8 ** Any violations are reported. 8 ** Any violations are reported.
9 */ 9 */
10 #include <stdio.h> 10 #include <stdio.h>
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 }else{ 75 }else{
76 printf("unknown command-line option: [%s]\n", argv[i]); 76 printf("unknown command-line option: [%s]\n", argv[i]);
77 printf("use --help for additional information\n"); 77 printf("use --help for additional information\n");
78 } 78 }
79 }else{ 79 }else{
80 checkSpacing(argv[i], flags); 80 checkSpacing(argv[i], flags);
81 } 81 }
82 } 82 }
83 return 0; 83 return 0;
84 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698