diff options
| author | Keith Packard <keithp@keithp.com> | 2009-11-15 15:53:01 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2009-11-15 15:53:01 -0800 | 
| commit | 6391c89bd5b89f5f46255b8365c658a873e5959a (patch) | |
| tree | 6d11891c39c83efdb92684fe87700c736fe89cb7 | |
| parent | 9b06e294e2777f69bcf5e98789c3f5477097d53b (diff) | |
Switch order of serial/flight in ao-postflight summary
| -rw-r--r-- | ao-tools/ao-postflight/ao-postflight.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/ao-tools/ao-postflight/ao-postflight.c b/ao-tools/ao-postflight/ao-postflight.c index 60d8c036..733eb38c 100644 --- a/ao-tools/ao-postflight/ao-postflight.c +++ b/ao-tools/ao-postflight/ao-postflight.c @@ -204,8 +204,10 @@ analyse_flight(struct cc_flightraw *f, FILE *summary_file, FILE *detail_file,  	struct cc_flightcooked *cooked;  	double	apogee; -	fprintf(summary_file, "Flight:  %9d\nSerial:  %9d\n", -		f->flight, f->serial); +	fprintf(summary_file, +		"Serial:  %9d\n" +		"Flight:  %9d\n", +		f->serial, f->flight);  	boost_start = f->accel.data[0].time;  	boost_stop = f->accel.data[f->accel.num-1].time;  	for (i = 0; i < f->state.num; i++) {  | 
