mirror of
https://github.com/postgres/postgres.git
synced 2025-11-15 03:41:20 +03:00
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
#include <stdlib.h>
|
||||
#include "Varray.h"
|
||||
|
||||
Varray *
|
||||
Varray *
|
||||
NewVarray(size_t nobj, size_t size)
|
||||
/*
|
||||
* NewVarray -- allocate a Varray to contain an array of val each of which
|
||||
@@ -18,7 +18,7 @@ NewVarray(size_t nobj, size_t size)
|
||||
* returns NULL otherwise.
|
||||
*/
|
||||
{
|
||||
Varray *result;
|
||||
Varray *result;
|
||||
|
||||
if (nobj == 0)
|
||||
nobj = VARRAY_INITIAL_SIZE;
|
||||
|
||||
Reference in New Issue
Block a user