Print this page
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/os/aio.c
          +++ new/usr/src/uts/common/os/aio.c
↓ open down ↓ 173 lines elided ↑ open up ↑
 174  174  static struct modlsys modlsys32 = {
 175  175          &mod_syscallops32,
 176  176          "kernel Async I/O for 32 bit compatibility",
 177  177          &kaio_sysent32
 178  178  };
 179  179  #endif  /* _SYSCALL32_IMPL */
 180  180  
 181  181  
 182  182  static struct modlinkage modlinkage = {
 183  183          MODREV_1,
 184      -        &modlsys,
      184 +        {   &modlsys,
 185  185  #ifdef  _SYSCALL32_IMPL
 186      -        &modlsys32,
      186 +            &modlsys32,
 187  187  #endif
 188      -        NULL
      188 +            NULL
      189 +        }
 189  190  };
 190  191  
 191  192  int
 192  193  _init(void)
 193  194  {
 194  195          int retval;
 195  196  
 196  197          if ((retval = mod_install(&modlinkage)) != 0)
 197  198                  return (retval);
 198  199  
↓ open down ↓ 3641 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX