diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-17 23:18:20 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-17 23:18:20 +0000 |
commit | 01308218db84dbe39d40e0a68e9051070079e552 (patch) | |
tree | bb4e53b36a7f77b5c7400b0f2c0e2232a94fe266 /sbin/pdisk/dump.c | |
parent | 6a8ab3d78c1ca5638191dddc702dca808451f029 (diff) |
Change "//" comments to "/**/". Nuke really stupid ones.
Diffstat (limited to 'sbin/pdisk/dump.c')
-rw-r--r-- | sbin/pdisk/dump.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sbin/pdisk/dump.c b/sbin/pdisk/dump.c index cc7f16887ed..ea766a8f2be 100644 --- a/sbin/pdisk/dump.c +++ b/sbin/pdisk/dump.c @@ -1,10 +1,10 @@ -/* $OpenBSD: dump.c,v 1.33 2016/01/17 19:39:20 krw Exp $ */ +/* $OpenBSD: dump.c,v 1.34 2016/01/17 23:18:19 krw Exp $ */ -// -// dump.c - dumping partition maps -// -// Written by Eryk Vershen -// +/* + * dump.c - dumping partition maps + * + * Written by Eryk Vershen + */ /* * Copyright 1996,1997,1998 by Apple Computer, Inc. @@ -57,8 +57,8 @@ struct patchdescriptor { }; struct patchlist { - unsigned short numPatchBlocks; // number of disk blocks to hold the patch list - unsigned short numPatches; // number of patches in list + unsigned short numPatchBlocks; /* number of disk blocks to hold the patch list */ + unsigned short numPatches; /* number of patches in list */ struct patchdescriptor thePatch[1]; }; |