Browse Source

[2491] Fixed a typo pointed out in the code review.

Marcin Siodelski 12 years ago
parent
commit
8627b6eb89
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dhcp/std_option_defs.h

+ 1 - 1
src/lib/dhcp/std_option_defs.h

@@ -44,7 +44,7 @@ struct OptionDefParams {
     uint16_t code;            // option code
     OptionDataType type;      // data type
     bool array;               // is array
-    OptionDataType *records;  // record fields
+    OptionDataType* records;  // record fields
     size_t records_size;      // number of fields in a record
 };