aboutsummaryrefslogtreecommitdiff
path: root/sbin/fsck_ffs/suj.c
diff options
context:
space:
mode:
authorSean Bruno <sbruno@FreeBSD.org>2013-03-23 04:26:13 +0000
committerSean Bruno <sbruno@FreeBSD.org>2013-03-23 04:26:13 +0000
commit115f80b8d3f2c09bf5b65c3346153b97d4c4dedf (patch)
tree0919d525762dd205d22121917dfe139e9308d76c /sbin/fsck_ffs/suj.c
parentd18e646cbeb80b1e55b995849e90073a7f8b30b2 (diff)
downloadsrc-115f80b8d3f2c09bf5b65c3346153b97d4c4dedf.tar.gz
src-115f80b8d3f2c09bf5b65c3346153b97d4c4dedf.zip
Revert svn r248625
Clang errors around printf could be trivially fixed, but the breakage in sbin/fsdb were to significant for this type of change. Submitter of this changeset has been notified and hopefully this can be restored soon.
Notes
Notes: svn path=/head/; revision=248634
Diffstat (limited to 'sbin/fsck_ffs/suj.c')
-rw-r--r--sbin/fsck_ffs/suj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsck_ffs/suj.c b/sbin/fsck_ffs/suj.c
index 5fca0f5fbfdf..ae4748716e2d 100644
--- a/sbin/fsck_ffs/suj.c
+++ b/sbin/fsck_ffs/suj.c
@@ -161,7 +161,7 @@ errmalloc(size_t n)
{
void *a;
- a = Malloc(n);
+ a = malloc(n);
if (a == NULL)
err(EX_OSERR, "malloc(%zu)", n);
return (a);
@@ -194,7 +194,7 @@ opendisk(const char *devnam)
{
if (disk != NULL)
return;
- disk = Malloc(sizeof(*disk));
+ disk = malloc(sizeof(*disk));
if (disk == NULL)
err(EX_OSERR, "malloc(%zu)", sizeof(*disk));
if (ufs_disk_fillout(disk, devnam) == -1) {