X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Ffloat.c;h=77651124d000e2bb41942efc7b3ec0385802b5c6;hb=f57447bdfc29e7390c32661341ef50ae1d9ab208;hp=7fe4fe0042fb1f314b3b70d8fcb7984864788ace;hpb=d335f0f72a86c7cdcc18e524c74b82a51ad01b16;p=babeltrace.git diff --git a/formats/ctf-text/types/float.c b/formats/ctf-text/types/float.c index 7fe4fe00..77651124 100644 --- a/formats/ctf-text/types/float.c +++ b/formats/ctf-text/types/float.c @@ -3,7 +3,9 @@ * * Floating point read/write functions. * - * Copyright 2010 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -38,8 +40,8 @@ int ctf_text_float_write(struct stream_pos *ppos, struct definition *definition) fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", - g_quark_to_string(definition->name)); + rem_(g_quark_to_string(definition->name))); - fprintf(pos->fp, "%Lg\n", float_definition->value); + fprintf(pos->fp, "%g", float_definition->value); return 0; }