summaryrefslogtreecommitdiff
path: root/random
diff options
context:
space:
mode:
authorDafydd Harries <dafydd.harries@collabora.co.uk>2007-02-05 17:08:00 +0000
committerDafydd Harries <dafydd.harries@collabora.co.uk>2007-02-05 17:08:00 +0000
commit91b7d85f2e69ee77769e89229025d801ca6ab814 (patch)
treedaf1e6d3a31f86a305e069d1156d73d62d4782d6 /random
parent407cdfb1bf5e2bfb8e240bab2ac4556775723328 (diff)
downloadlibnice-91b7d85f2e69ee77769e89229025d801ca6ab814.tar.gz
rename nice_glib_rng_new -> nice_rng_glib_new
darcs-hash:20070205170843-c9803-3c31b9f0efe39018f5239d0f27725fcbb0a097ba.gz
Diffstat (limited to 'random')
-rw-r--r--random/random-glib.c2
-rw-r--r--random/random-glib.h2
-rw-r--r--random/random.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/random/random-glib.c b/random/random-glib.c
index 420f5d3..ccbb3a5 100644
--- a/random/random-glib.c
+++ b/random/random-glib.c
@@ -29,7 +29,7 @@ rng_free (NiceRNG *rng)
}
NiceRNG *
-nice_glib_rng_new (void)
+nice_rng_glib_new (void)
{
NiceRNG *ret;
diff --git a/random/random-glib.h b/random/random-glib.h
index 22e53ed..5387c05 100644
--- a/random/random-glib.h
+++ b/random/random-glib.h
@@ -9,7 +9,7 @@
G_BEGIN_DECLS
NiceRNG *
-nice_glib_rng_new (void);
+nice_rng_glib_new (void);
G_END_DECLS
diff --git a/random/random.c b/random/random.c
index 60369e4..5a07110 100644
--- a/random/random.c
+++ b/random/random.c
@@ -7,7 +7,7 @@ nice_rng_new (void)
{
NiceRNG *rng;
- rng = nice_glib_rng_new ();
+ rng = nice_rng_glib_new ();
rng->seed (rng, 0);
return rng;
}