diff options
author | phk <phk@FreeBSD.org> | 2002-12-17 07:22:48 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-12-17 07:22:48 +0000 |
commit | ef296549a5bb21d569ccd1fc9331d7b6433f87db (patch) | |
tree | 6f9c63b6958266f59e68c2d4d2dc7dcdc058ff17 /sys | |
parent | 66134cacfa0f0b08a299886e514cacff3c0f0be4 (diff) | |
download | FreeBSD-src-ef296549a5bb21d569ccd1fc9331d7b6433f87db.zip FreeBSD-src-ef296549a5bb21d569ccd1fc9331d7b6433f87db.tar.gz |
Constify the dumpconf() function.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/geom/geom_gpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/geom_gpt.c b/sys/geom/geom_gpt.c index 14c8483..6b046c4 100644 --- a/sys/geom/geom_gpt.c +++ b/sys/geom/geom_gpt.c @@ -113,7 +113,7 @@ g_gpt_start(struct bio *bp) } static void -g_gpt_dumpconf(struct sbuf *sb, char *indent, struct g_geom *gp, +g_gpt_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, struct g_consumer *cp, struct g_provider *pp) { struct g_slicer *gsp = gp->softc; |