diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-29 21:46:15 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-29 22:16:18 +0200 |
commit | 7ae7170d6140f7cad730f05f84b53437058b82f4 (patch) | |
tree | 79caaefa15a1e4ae1c60def7a40425983206c281 /Userland/Libraries/LibPCIDB/Database.h | |
parent | def1f1444aeee2caf6d47d0eb96a18ffc476c3f9 (diff) | |
download | serenity-7ae7170d6140f7cad730f05f84b53437058b82f4.zip |
Everywhere: "file name" => "filename"
Diffstat (limited to 'Userland/Libraries/LibPCIDB/Database.h')
-rw-r--r-- | Userland/Libraries/LibPCIDB/Database.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibPCIDB/Database.h b/Userland/Libraries/LibPCIDB/Database.h index 704d643f89..01a0073c8d 100644 --- a/Userland/Libraries/LibPCIDB/Database.h +++ b/Userland/Libraries/LibPCIDB/Database.h @@ -53,7 +53,7 @@ struct Class { class Database : public RefCounted<Database> { public: - static RefPtr<Database> open(const String& file_name); + static RefPtr<Database> open(const String& filename); static RefPtr<Database> open() { return open("/res/pci.ids"); }; const StringView get_vendor(u16 vendor_id) const; |