X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Ffloat.c;h=7f5e40661e5858c0a51cecf4bb08821724418d6f;hp=ebd7b7ae166c91a3be761b2ea9da6198e3cf9277;hb=64fa3fec6c28f1d077812b4bfa06ae73b0f5999d;hpb=989c73bc7635ba348a372649fa1ccb2d8250be63 diff --git a/formats/ctf/types/float.c b/formats/ctf/types/float.c index ebd7b7ae..7f5e4066 100644 --- a/formats/ctf/types/float.c +++ b/formats/ctf/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 @@ -142,7 +144,7 @@ int ctf_float_read(struct stream_pos *ppos, struct definition *definition) union ldoubleIEEE754 u; struct definition *tmpdef = static_ldouble_declaration->p.definition_new(&static_ldouble_declaration->p, - NULL, 0, 0); + NULL, 0, 0, NULL); struct definition_float *tmpfloat = container_of(tmpdef, struct definition_float, p); struct ctf_stream_pos destp; @@ -168,7 +170,7 @@ int ctf_float_write(struct stream_pos *ppos, struct definition *definition) union ldoubleIEEE754 u; struct definition *tmpdef = static_ldouble_declaration->p.definition_new(&static_ldouble_declaration->p, - NULL, 0, 0); + NULL, 0, 0, NULL); struct definition_float *tmpfloat = container_of(tmpdef, struct definition_float, p); struct ctf_stream_pos srcp;