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

@@ -20,12 +20,10 @@
  *
  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
-#pragma ident   "%Z%%M% %I%     %E% SMI"
-
 /*
  * gld - Generic LAN Driver
  * media dependent routines
  */
 

@@ -66,11 +64,11 @@
 
 static struct   llc_snap_hdr llc_snap_def = {
         LSAP_SNAP,              /* DLSAP 0xaa */
         LSAP_SNAP,              /* SLSAP 0xaa */
         CNTL_LLC_UI,            /* Control 0x03 */
-        0x00, 0x00, 0x00,       /* Org[3] */
+        { 0x00, 0x00, 0x00 },   /* Org[3] */
         0x00                    /* Type */
 };
 
 #define ISETHERTYPE(snaphdr) \
         (snaphdr->d_lsap == LSAP_SNAP && \