Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/libbb/messages.c


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/libbb/messages.c

    r3232 r3621  
    3030const char bb_msg_you_must_be_root[] ALIGN1 = "you must be root";
    3131const char bb_msg_requires_arg[] ALIGN1 = "%s requires an argument";
    32 const char bb_msg_invalid_arg[] ALIGN1 = "invalid argument '%s' to '%s'";
     32const char bb_msg_invalid_arg_to[] ALIGN1 = "invalid argument '%s' to '%s'";
    3333const char bb_msg_standard_input[] ALIGN1 = "standard input";
    3434const char bb_msg_standard_output[] ALIGN1 = "standard output";
     
    4444
    4545
    46 const int const_int_1 = 1;
     46//const int const_int_1 = 1;
    4747/* explicitly = 0, otherwise gcc may make it a common variable
    4848 * and it will end up in bss */
     
    6060# endif
    6161#endif
    62 
    63 /* We use it for "global" data via *(struct global*)&bb_common_bufsiz1.
    64  * Since gcc insists on aligning struct global's members, it would be a pity
    65  * (and an alignment fault on some CPUs) to mess it up. */
    66 char bb_common_bufsiz1[COMMON_BUFSIZE] ALIGNED(sizeof(long long));
Note: See TracChangeset for help on using the changeset viewer.