Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azurepipelines/templates/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

variables:
default_python_version: "3.12"
default_linux_image: "ghcr.io/tianocore/containers/fedora-41-test:4dbfa9e"
default_linux_image: "ghcr.io/tianocore/containers/fedora-43-test:bde74f8"
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "ghcr.io/tianocore/containers/fedora-40-dev:latest",
"image": "ghcr.io/tianocore/containers/fedora-43-dev:latest",
"postCreateCommand": "git config --global --add safe.directory '*' && pip install --upgrade -r pip-requirements.txt",
"customizations": {
"vscode": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/BuildPlatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

runs-on: ${{ inputs.runs-on }}
container:
image: ${{ startswith(inputs.runs-on, 'ubuntu') && 'ghcr.io/tianocore/containers/fedora-40-dev:latest' || '' }}
image: ${{ startswith(inputs.runs-on, 'ubuntu') && 'ghcr.io/tianocore/containers/fedora-43-v:latest' || '' }}

steps:
- name: Checkout
Expand Down
1 change: 0 additions & 1 deletion EmulatorPkg/Unix/Host/Host.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
#define _Bool char // for clang debug
#endif
#else
#include <termio.h>
#include <sys/vfs.h>
#include <linux/fs.h>
#endif
Expand Down
4 changes: 2 additions & 2 deletions MdeModulePkg/Universal/DebugSupportDxe/Ia32/PlDebugSupport.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ RegisterPeriodicCallback (
IN EFI_PERIODIC_CALLBACK PeriodicCallback
)
{
return ManageIdtEntryTable (PeriodicCallback, SYSTEM_TIMER_VECTOR);
return ManageIdtEntryTable ((CALLBACK_FUNC)PeriodicCallback, SYSTEM_TIMER_VECTOR);
}

/**
Expand Down Expand Up @@ -221,7 +221,7 @@ RegisterExceptionCallback (
IN EFI_EXCEPTION_TYPE ExceptionType
)
{
return ManageIdtEntryTable (ExceptionCallback, ExceptionType);
return ManageIdtEntryTable ((CALLBACK_FUNC)ExceptionCallback, ExceptionType);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ CreateSpdmDeviceContext (
SpdmDeviceInfo->MaxSpdmMsgSize,
SpdmDeviceInfo->TransportHeaderSize,
SpdmDeviceInfo->TransportTailSize,
SpdmDeviceInfo->TransportEncodeMessage,
SpdmDeviceInfo->TransportDecodeMessage
(libspdm_transport_encode_message_func)SpdmDeviceInfo->TransportEncodeMessage,
(libspdm_transport_decode_message_func)SpdmDeviceInfo->TransportDecodeMessage
);

SpdmRegisterDeviceBufferFunc (
Expand Down
Loading