X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Finteger.c;h=337641d7a3123018f14fc3f933285da8d35484ad;hp=af5cc39fe8d98d589eb1ed2c5a6c249b546d592e;hb=c462e188f3e7819c7bc74f671038cdbf36e8c3c0;hpb=fef0e5211cd1cb9a2acb5dad6045d15cfd75fe5b diff --git a/types/integer.c b/types/integer.c index af5cc39f..337641d7 100644 --- a/types/integer.c +++ b/types/integer.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 @@ -173,7 +181,8 @@ uint64_t get_unsigned_int(const struct definition *field) if (!integer_declaration->signedness) { return integer_definition->value._unsigned; } - fprintf(stderr, "[warning] Extracting unsigned value in a signed int\n"); + fprintf(stderr, "[warning] Extracting unsigned value from a signed int (%s)\n", + g_quark_to_string(field->name)); return (uint64_t)integer_definition->value._signed; } @@ -188,6 +197,7 @@ int64_t get_signed_int(const struct definition *field) if (integer_declaration->signedness) { return integer_definition->value._signed; } - fprintf(stderr, "[warning] Extracting signed value in an unsigned int\n"); + fprintf(stderr, "[warning] Extracting signed value from an unsigned int (%s)\n", + g_quark_to_string(field->name)); return (int64_t)integer_definition->value._unsigned; }