X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=types%2Ffloat.c;h=5c80312d457a191dbfa66b07c41e84922ffcaeae;hb=e6b4b4f489f66decb680245a13e9e53abfe62ede;hp=b2ef65bc3ee21510deafcb3d63516ab0b2780e91;hpb=08c82b90d94a6dfee1f3da4ec06864c6045c07f7;p=babeltrace.git diff --git a/types/float.c b/types/float.c index b2ef65bc..5c80312d 100644 --- a/types/float.c +++ b/types/float.c @@ -16,6 +16,14 @@ * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. */ #include @@ -37,9 +45,9 @@ void _float_declaration_free(struct declaration *declaration) struct declaration_float *float_declaration = container_of(declaration, struct declaration_float, p); - declaration_unref(&float_declaration->exp->p); - declaration_unref(&float_declaration->mantissa->p); - declaration_unref(&float_declaration->sign->p); + bt_declaration_unref(&float_declaration->exp->p); + bt_declaration_unref(&float_declaration->mantissa->p); + bt_declaration_unref(&float_declaration->sign->p); g_free(float_declaration); } @@ -85,7 +93,7 @@ struct definition * struct definition *tmp; _float = g_new(struct definition_float, 1); - declaration_ref(&float_declaration->p); + bt_declaration_ref(&float_declaration->p); _float->p.declaration = declaration; _float->declaration = float_declaration; _float->p.scope = new_definition_scope(parent_scope, field_name, root_name); @@ -139,6 +147,6 @@ void _float_definition_free(struct definition *definition) definition_unref(&_float->exp->p); definition_unref(&_float->mantissa->p); free_definition_scope(_float->p.scope); - declaration_unref(_float->p.declaration); + bt_declaration_unref(_float->p.declaration); g_free(_float); }