mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
Improve style
Copied from Perforce Change: 18429 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
099a7f43c8
commit
e727cc338e
1 changed files with 5 additions and 1 deletions
|
|
@ -19,6 +19,7 @@ static void test(void) {
|
|||
mps_fmt_t format;
|
||||
mps_root_t root;
|
||||
mps_addr_t q;
|
||||
mps_res_t res;
|
||||
|
||||
int p;
|
||||
|
||||
|
|
@ -31,7 +32,10 @@ static void test(void) {
|
|||
die(mps_pool_create(&pool, space, mps_class_mv(),
|
||||
1024*32, 1024*16, 1024*256), "pool");
|
||||
|
||||
while (mps_alloc(&q, pool, 64*1024)==MPS_RES_OK);
|
||||
do {
|
||||
res = mps_alloc(&q, pool, 64*1024);
|
||||
} while (res==MPS_RES_OK);
|
||||
|
||||
p=0;
|
||||
|
||||
while (1) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue