Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/coreutils/hostid.c

    r3232 r3621  
    3737    }
    3838
    39     printf("%08lx\n", gethostid());
     39    /* POSIX says gethostid returns a "32-bit identifier" */
     40    printf("%08x\n", (unsigned)(uint32_t)gethostid());
    4041
    4142    return fflush_all();
Note: See TracChangeset for help on using the changeset viewer.