From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 5F79540845 for ; Thu, 3 Mar 2022 01:35:05 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 038AF68B199; Thu, 3 Mar 2022 03:35:02 +0200 (EET) Received: from mail.comstyle.com (speedy.comstyle.com [206.51.28.2]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id F3D5768B18A for ; Thu, 3 Mar 2022 03:34:55 +0200 (EET) Received: from mail.comstyle.com (localhost [127.0.0.1]) by mail.comstyle.com (Postfix) with ESMTP id 4K8D7L5BlJz8PbP for ; Wed, 2 Mar 2022 20:34:54 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=comstyle.com; h=date:from :to:subject:message-id:mime-version:content-type; s=default; bh= Ocoz737aOX274yaVTHceDEA5a/g=; b=HUQa64vh1HEKLpK7mqhiyICzm1EFLaXj AG5uO0WpYbgt1UjxHsJrpzriKd1MDPWo8ZXMY98ocxoBB3sEzAYRmRoC9mVZoypq VbyYA7Up0fhKi2wDfIKy7P9MauVKu3Uqg8QZtD5wHp8BhH9gp8HWhB3FKVLEi5ov HNn7emr+G6A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=comstyle.com; h=date:from:to :subject:message-id:mime-version:content-type; q=dns; s=default; b= jhKK2mrfOTpReMVovfETjektTPF16bzyFtnYtX0KeDYlpuo8oj2w8c4dhB7aeKbJ Np66av9SaTo7Tk6R/iKuPyj+6dYNHaM/2bwzJGtPolvvEfQ8CGOYfzjusnEN/2h4 cDKoYsJyP1mpuFMB+9fJEaeMfcqZ5OljZ/28mEePXuQ= Received: from humpty.home.comstyle.com (unknown [IPv6:2001:470:b050:3:c15a:eab8:172c:3a1f]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: brad) by mail.comstyle.com (Postfix) with ESMTPSA id 4K8D7L4dtPz8PbN for ; Wed, 2 Mar 2022 20:34:54 -0500 (EST) Date: Wed, 2 Mar 2022 20:34:53 -0500 From: Brad Smith To: ffmpeg-devel@ffmpeg.org Message-ID: MIME-Version: 1.0 Content-Disposition: inline Subject: [FFmpeg-devel] [PATCH] Use proper header for OpenBSD PPC CPU detection X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Use the proper header for PPC CPU detection code. sys/param.h includes sys/types, but sys/types.h is the more appropriate header to be used here. diff --git a/libavutil/ppc/cpu.c b/libavutil/ppc/cpu.c index b022149fa0..96b491c716 100644 --- a/libavutil/ppc/cpu.c +++ b/libavutil/ppc/cpu.c @@ -28,7 +28,7 @@ #include #endif #elif defined(__OpenBSD__) -#include +#include #include #include #elif defined(__AMIGAOS4__) _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".