VirtualBox

Ignore:
Timestamp:
Aug 14, 2016 9:56:30 AM (8 years ago)
Author:
vboxsync
Message:

compile fixes on Ubuntu

Location:
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_consume.c

    r63129 r63435  
    17271727
    17281728                                case DT_ACT_FTRUNCATE:
     1729                                {
    17291730                                        if (fp == NULL)
    17301731                                                continue;
    17311732
    17321733                                        (void) fflush(fp);
    1733                                         (void) ftruncate(fileno(fp), 0);
     1734                                        int res = ftruncate(fileno(fp), 0);
     1735                                        NOREF(res);
    17341736                                        (void) fseeko(fp, 0, SEEK_SET);
    17351737                                        continue;
    1736 
     1738                                }
    17371739                                case DT_ACT_NORMALIZE:
    17381740                                        if (i == epd->dtepd_nrecs - 1)
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_options.c

    r63207 r63435  
    109109#endif
    110110
    111         (void) write(STDERR_FILENO, msg, sizeof (msg) - 1);
     111        int res = write(STDERR_FILENO, msg, sizeof (msg) - 1);
     112        NOREF(res);
    112113
    113114#ifndef _MSC_VER
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_printf.c

    r63369 r63435  
    16061606
    16071607                if (width != 0)
    1608                         f += snprintf(f, sizeof (format), "%d", ABS(width));
     1608                        f += snprintf(f, sizeof (format) - (f - format), "%d", ABS(width));
    16091609
    16101610                if (prec > 0)
    1611                         f += snprintf(f, sizeof (format), ".%d", prec);
     1611                        f += snprintf(f, sizeof (format) - (f - format), ".%d", prec);
    16121612
    16131613                (void) strcpy(f, pfd->pfd_fmt);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette