usdxeV9Oxq2FLQR6sPSEQsz PjzBpyfLhL03PNJy2/1V7iSI7asLKqo7Fxy/3sKvoSaz9mbs2+MgjWr34OKugwX056r8PQ C2M0K+LkOZVvRi42w6ckOmCYr7wJF0IV3cLCB0ky2B7tOOpmnzG1aggDrEi8R0OQsDIUEA czUcDszWSxeuHv0OoJINY8EprhtBEyX57E8opvzUNEle85GzKfNAHOKUTI0Aow== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1739199186; a=rsa-sha256; cv=none; b=ox2t2mRZzD86Ty3uyCITCwOPoVhGhaCsNKXs0Xmi6vsrRFGVGLkd2T11ahmn5UxXAT5Xv9 7d9JIcsGEPMThW3ys+TlnyzXbMo/Xo5B9hip7JBaiKubIHZ760pnffdjVSd4q1wiOl/WGf 76bO6VwGp0l1WEM0LnKejQHvsI2v5pAzsqKy/qtWi12y70QSBLJ2YDvsIQl2QYCM1PaWUT to3w2IT4xUvYV+zfxVCaYQBjWqTbRQ39vUm9zFaqjfXELlRBmf/xVUFLRwkaBQ4cNv5q+z muiXaMxu3m6MqEfBEv6xXfZTFtMiYGiuBFA1OgkDg6cMSswo/lfaWNsXs47f4w== ARC-Authentication-Results: i=1; mx1.freebsd.org; none Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4Ys6yB4Hs2zWgZ; Mon, 10 Feb 2025 14:53:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.18.1/8.18.1) with ESMTP id 51AEr6pB028794; Mon, 10 Feb 2025 14:53:06 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.18.1/8.18.1/Submit) id 51AEr6Jt028791; Mon, 10 Feb 2025 14:53:06 GMT (envelope-from git) Date: Mon, 10 Feb 2025 14:53:06 GMT Message-Id: <202502101453.51AEr6Jt028791@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org From: "Bjoern A. Zeeb" Subject: git: 51b3a9dacfee - stable/14 - lindebugfs: use __func__ not __FUNCTION__ List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-src-all@freebsd.org Sender: owner-dev-commits-src-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: bz X-Git-Repository: src X-Git-Refname: refs/heads/stable/14 X-Git-Reftype: branch X-Git-Commit: 51b3a9dacfeec79759fa497d9fe8e87dde2c45be Auto-Submitted: auto-generated The branch stable/14 has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=51b3a9dacfeec79759fa497d9fe8e87dde2c45be commit 51b3a9dacfeec79759fa497d9fe8e87dde2c45be Author: Bjoern A. Zeeb AuthorDate: 2025-01-25 12:07:12 +0000 Commit: Bjoern A. Zeeb CommitDate: 2025-02-10 14:52:12 +0000 lindebugfs: use __func__ not __FUNCTION__ Change to the C99 version and not the old gcc name. No functional changes. Sponsored by: The FreeBSD Foundation Reviewed by: dumbbell, emaste Differential Revision: https://reviews.freebsd.org/D48736 (cherry picked from commit 94e6c8d7d19de68b29233e59c85b16c645c1a872) --- sys/compat/lindebugfs/lindebugfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/compat/lindebugfs/lindebugfs.c b/sys/compat/lindebugfs/lindebugfs.c index 6ff9cea6c4e8..ab1dc2a0e5e0 100644 --- a/sys/compat/lindebugfs/lindebugfs.c +++ b/sys/compat/lindebugfs/lindebugfs.c @@ -131,7 +131,7 @@ debugfs_fill(PFS_FILL_ARGS) rc = d->dm_fops->open(&vn, &lf); if (rc < 0) { #ifdef INVARIANTS - printf("%s:%d open failed with %d\n", __FUNCTION__, __LINE__, rc); + printf("%s:%d open failed with %d\n", __func__, __LINE__, rc); #endif return (-rc); } @@ -166,7 +166,7 @@ debugfs_fill(PFS_FILL_ARGS) if (rc < 0) { #ifdef INVARIANTS - printf("%s:%d read/write failed with %d\n", __FUNCTION__, __LINE__, rc); + printf("%s:%d read/write failed with %d\n", __func__, __LINE__, rc); #endif return (-rc); }