mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
serialui: Constify a variable.
This commit is contained in:
parent
63806a94b5
commit
3399c81302
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ static BOOL SERIALUI_GetConfItems(HWND hDlg, DWORD id, LPCPARAM2STR table, LPDWO
|
|||
* dcb.BaudRate. This code is to convert back and forth between CBR_ style
|
||||
* and integers. The dialog box uses integer values.
|
||||
*/
|
||||
static DWORD SERIALUI_BaudConvertTable[] = {
|
||||
static const DWORD SERIALUI_BaudConvertTable[] = {
|
||||
CBR_110, 110, CBR_300, 300, CBR_600, 600, CBR_1200, 1200,
|
||||
CBR_2400, 2400, CBR_4800, 4800, CBR_9600, 9600, CBR_14400, 14400,
|
||||
CBR_19200, 19200, CBR_38400, 38400, CBR_56000, 56000, CBR_57600, 57600,
|
||||
|
|
Loading…
Reference in a new issue