Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(647)

Unified Diff: lib/freebl/mpi/tests/mptest-1.c

Issue 201830043: Bug 1118245 - Apply uniform style across NSS
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/freebl/mpi/test-info.c ('k') | lib/freebl/mpi/tests/mptest-2.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/freebl/mpi/tests/mptest-1.c
===================================================================
--- a/lib/freebl/mpi/tests/mptest-1.c
+++ b/lib/freebl/mpi/tests/mptest-1.c
@@ -15,28 +15,27 @@
#include <limits.h>
#ifdef MAC_CW_SIOUX
#include <console.h>
#endif
#include "mpi.h"
-int main(int argc, char *argv[])
-{
- int ix;
+int main(int argc, char *argv[]) {
+ int ix;
mp_int mp;
#ifdef MAC_CW_SIOUX
argc = ccommand(&argv);
#endif
mp_init(&mp);
-
- for(ix = 1; ix < argc; ix++) {
+
+ for (ix = 1; ix < argc; ix++) {
mp_read_radix(&mp, argv[ix], 10);
mp_print(&mp, stdout);
fputc('\n', stdout);
}
mp_clear(&mp);
return 0;
}
« no previous file with comments | « lib/freebl/mpi/test-info.c ('k') | lib/freebl/mpi/tests/mptest-2.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b