VirtualBox

Ignore:
Timestamp:
Dec 3, 2009 1:11:29 PM (15 years ago)
Author:
vboxsync
Message:

VBoxManageImport.cpp: Iff the cpu count is supposed to be validated here, then use constants from VBox/param.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageImport.cpp

    r25142 r25165  
    4747
    4848#include <VBox/log.h>
     49#include <VBox/param.h>
    4950
    5051#include "VBoxManage.h"
     
    465466                            {
    466467                                uint32_t cCPUs;
    467                                 if (    (VINF_SUCCESS == strOverride.toInt(cCPUs))
    468                                      && (cCPUs > 0)
    469                                      && (cCPUs < 33)
     468                                if (    strOverride.toInt(cCPUs) == VINF_SUCCESS
     469                                     && cCPUs >= VMM_MIN_CPU_COUNT
     470                                     && cCPUs <= VMM_MAX_CPU_COUNT
    470471                                   )
    471472                                {
     
    476477                                else
    477478                                    return errorSyntax(USAGE_IMPORTAPPLIANCE,
    478                                                        "Argument to --cpus option must be a number greater than 0 and less than 33.");
     479                                                       "Argument to --cpus option must be a number greater than %d and less than %d.",
     480                                                       VMM_MIN_CPU_COUNT - 1, VMM_MAX_CPU_COUNT + 1);
    479481                            }
    480482                            else
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette