X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/eb31b00e4098ffb93eaf574f70cdd108b6610080..4e66da02f19648ee1be862e67ba1d1fc5549fb7f:/noise.c diff --git a/noise.c b/noise.c index a4648f8..8e5129b 100644 --- a/noise.c +++ b/noise.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: noise.c,v 1.6 2000/06/17 12:57:47 mdw Exp $ + * $Id: noise.c,v 1.7 2004/04/02 01:03:49 mdw Exp $ * * Acquisition of environmental noise (Unix-specific) * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: noise.c,v $ + * Revision 1.7 2004/04/02 01:03:49 mdw + * Miscellaneous constification. + * * Revision 1.6 2000/06/17 12:57:47 mdw * New free counter noise generator, for use if /dev/random is * unavailable. @@ -85,7 +88,7 @@ /*----- Noise source definition -------------------------------------------*/ -rand_source noise_source = { noise_acquire, noise_timer }; +const rand_source noise_source = { noise_acquire, noise_timer }; /*----- Static variables --------------------------------------------------*/