Commit 78d0c39d authored by Roberto Susino's avatar Roberto Susino
Browse files

Change format of output json file

parent e32f7a2e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
pro json_write, struct, filename
	openw, unit, filename, /get_lun
	printf, unit, struct, /implied_print
	printf, unit, json_serialize(struct, /lower)
	free_lun, unit
end