Changeset 63369 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace
- Timestamp:
- Aug 12, 2016 4:45:31 PM (8 years ago)
- Location:
- trunk/src/VBox/ExtPacks/VBoxDTrace/onnv
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/ctf_labels.c
r53657 r63369 39 39 * Labels are only supported in V2 or later 40 40 */ 41 if (fp->ctf_version < CTF_VERSION_2) 41 if (fp->ctf_version < CTF_VERSION_2) { 42 *ctl = NULL; /* Shup up, GCC! */ 43 *num_labels = 0; 42 44 return (ctf_set_errno(fp, ECTF_NOTSUP)); 45 } 43 46 44 47 h = (const ctf_header_t *)fp->ctf_data.cts_data; -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_lex.l
r62834 r63369 46 46 # ifdef _MSC_VER 47 47 # pragma warning(disable:4668 4131 4255) 48 # endif 49 # ifdef __GNUC__ 50 # if ((__GNUC__ << 16) + __GNUC_MINOR__) >= 0x4002 51 # pragma GCC diagnostic ignored "-Wunused-function" 52 # endif 48 53 # endif 49 54 # include <iprt/ctype.h> -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_printf.c
r62829 r63369 1434 1434 caddr_t addr; 1435 1435 size_t size; 1436 uint32_t flags ;1436 uint32_t flags VBDTUNASS(0); 1437 1437 1438 1438 if (pfd->pfd_preflen != 0) {
Note:
See TracChangeset
for help on using the changeset viewer.