diff options
author | Dehan Meng <demeng@redhat.com> | 2024-12-10 13:46:16 +0800 |
---|---|---|
committer | Konstantin Kostiuk <kkostiuk@redhat.com> | 2024-12-18 13:15:38 +0200 |
commit | 5788e9602416d24533a19d24b087d56a75119c36 (patch) | |
tree | 54d63f2d2e584ad478000266799fdfa4b021343c | |
parent | 56ef123777b7a29f5b813696a69865d6033c3c78 (diff) | |
download | qemu-5788e9602416d24533a19d24b087d56a75119c36.zip qemu-5788e9602416d24533a19d24b087d56a75119c36.tar.gz qemu-5788e9602416d24533a19d24b087d56a75119c36.tar.bz2 |
qemu-ga-win: Fix a typo error
There is a typo error for api 'guest-get-osinfo',
the win2025's version in WIN_10_0_SERVER_VERSION_MATRIX
should be adjusted.
Signed-off-by: Dehan Meng <demeng@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Link: https://lore.kernel.org/r/20241210054616.260386-1-demeng@redhat.com
Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
-rw-r--r-- | qga/commands-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qga/commands-win32.c b/qga/commands-win32.c index 038beb8..99c026c 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -2088,7 +2088,7 @@ static const ga_win_10_0_t WIN_10_0_SERVER_VERSION_MATRIX[] = { {14393, "Microsoft Windows Server 2016", "2016"}, {17763, "Microsoft Windows Server 2019", "2019"}, {20344, "Microsoft Windows Server 2022", "2022"}, - {26040, "MIcrosoft Windows Server 2025", "2025"}, + {26040, "Microsoft Windows Server 2025", "2025"}, { } }; |