minor whitespace removal from code
This commit is contained in:
		| @ -1302,7 +1302,7 @@ static const hcl_ooch_t* add_io_name (hcl_t* hcl, const hcl_oocs_t* name) | |||||||
| 	hcl_ooch_t* ptr; | 	hcl_ooch_t* ptr; | ||||||
|  |  | ||||||
| 	link = (hcl_iolink_t*)hcl_callocmem (hcl, HCL_SIZEOF(*link) + HCL_SIZEOF(hcl_ooch_t) * (name->len + 1)); | 	link = (hcl_iolink_t*)hcl_callocmem (hcl, HCL_SIZEOF(*link) + HCL_SIZEOF(hcl_ooch_t) * (name->len + 1)); | ||||||
| 	if (!link) return HCL_NULL; | 	if (HCL_UNLIKELY(!link)) return HCL_NULL; | ||||||
|  |  | ||||||
| 	ptr = (hcl_ooch_t*)(link + 1); | 	ptr = (hcl_ooch_t*)(link + 1); | ||||||
|  |  | ||||||
| @ -1326,7 +1326,7 @@ static int begin_include (hcl_t* hcl) | |||||||
| 	if (!io_name) return -1; | 	if (!io_name) return -1; | ||||||
|  |  | ||||||
| 	arg = (hcl_ioinarg_t*)hcl_callocmem (hcl, HCL_SIZEOF(*arg)); | 	arg = (hcl_ioinarg_t*)hcl_callocmem (hcl, HCL_SIZEOF(*arg)); | ||||||
| 	if (!arg) goto oops; | 	if (HCL_UNLIKELY(!arg)) goto oops; | ||||||
|  |  | ||||||
| 	arg->name = io_name; | 	arg->name = io_name; | ||||||
| 	arg->line = 1; | 	arg->line = 1; | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user