Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/net Put the storage class first in an array declaration.



details:   https://anonhg.NetBSD.org/src/rev/1591dcf2513e
branches:  trunk
changeset: 516039:1591dcf2513e
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun Oct 14 00:39:09 2001 +0000

description:
Put the storage class first in an array declaration.

diffstat:

 sys/net/zlib.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 536727be35fa -r 1591dcf2513e sys/net/zlib.c
--- a/sys/net/zlib.c    Sun Oct 14 00:32:33 2001 +0000
+++ b/sys/net/zlib.c    Sun Oct 14 00:39:09 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zlib.c,v 1.13 2001/02/05 10:42:43 chs Exp $    */
+/*     $NetBSD: zlib.c,v 1.14 2001/10/14 00:39:09 simonb Exp $ */
 /*
  * This file is derived from various .h and .c files from the zlib-1.0.4
  * distribution by Jean-loup Gailly and Mark Adler, with some additions
@@ -11,7 +11,7 @@
  * - added inflateIncomp and deflateOutputPending
  * - allow strm->next_out to be NULL, meaning discard the output
  *
- * $Id: zlib.c,v 1.13 2001/02/05 10:42:43 chs Exp $
+ * $Id: zlib.c,v 1.14 2001/10/14 00:39:09 simonb Exp $
  */
 
 /* 
@@ -662,7 +662,7 @@
    compress_func func;
 } config;
 
-const local config configuration_table[10] = {
+local const config configuration_table[10] = {
 /*      good lazy nice chain */
 /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */
 /* 1 */ {4,    4,  8,    4, deflate_fast}, /* maximum speed, no lazy matches */



Home | Main Index | Thread Index | Old Index