~vcs-imports/busybox/trunk

« back to all changes in this revision

Viewing changes to networking/interface.c

  • Committer: Denys Vlasenko
  • Author(s): Christian Franke
  • Date: 2023-11-13 10:32:35 UTC
  • Revision ID: git-v1:a63b60bdd6fa26b867c80d44074118babbae7ffd
Cygwin: regenerate defconfig

Signed-off-by: Christian Franke <christian.franke@t-online.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
446
446
 * %n specifiers (even the size of integers may not match).
447
447
 */
448
448
#if INT_MAX == LONG_MAX
449
 
static const char *const ss_fmt[] = {
 
449
static const char *const ss_fmt[] ALIGN_PTR = {
450
450
        "%n%llu%u%u%u%u%n%n%n%llu%u%u%u%u%u",
451
451
        "%llu%llu%u%u%u%u%n%n%llu%llu%u%u%u%u%u",
452
452
        "%llu%llu%u%u%u%u%u%u%llu%llu%u%u%u%u%u%u"
453
453
};
454
454
#else
455
 
static const char *const ss_fmt[] = {
 
455
static const char *const ss_fmt[] ALIGN_PTR = {
456
456
        "%n%llu%lu%lu%lu%lu%n%n%n%llu%lu%lu%lu%lu%lu",
457
457
        "%llu%llu%lu%lu%lu%lu%n%n%llu%llu%lu%lu%lu%lu%lu",
458
458
        "%llu%llu%lu%lu%lu%lu%lu%lu%llu%llu%lu%lu%lu%lu%lu%lu"
731
731
#endif
732
732
 
733
733
 
734
 
static const struct hwtype *const hwtypes[] = {
 
734
static const struct hwtype *const hwtypes[] ALIGN_PTR = {
735
735
        &loop_hwtype,
736
736
        &ether_hwtype,
737
737
        &ppp_hwtype,
746
746
};
747
747
 
748
748
#ifdef IFF_PORTSEL
749
 
static const char *const if_port_text[] = {
 
749
static const char *const if_port_text[] ALIGN_PTR = {
750
750
        /* Keep in step with <linux/netdevice.h> */
751
751
        "unknown",
752
752
        "10base2",