Skip to content

Commit

Permalink
Merge pull request #274 from gdachs/small-bug
Browse files Browse the repository at this point in the history
HAVE_AOCEC_API missing in if in AdapterFactory
  • Loading branch information
Lars Op den Kamp authored Dec 11, 2016
2 parents a588269 + 6bc974b commit 12fa275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcec/adapter/AdapterFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ IAdapterCommunication *CAdapterFactory::GetInstance(const char *strPort, uint16_
return new CUSBCECAdapterCommunication(m_lib->m_cec, strPort, iBaudRate);
#endif

#if !defined(HAVE_RPI_API) && !defined(HAVE_P8_USB) && !defined(HAVE_TDA995X_API) && !defined(HAVE_EXYNOS_API)
#if !defined(HAVE_RPI_API) && !defined(HAVE_P8_USB) && !defined(HAVE_TDA995X_API) && !defined(HAVE_EXYNOS_API) && !defined(HAVE_AOCEC_API)
return NULL;
#endif
}
Expand Down

0 comments on commit 12fa275

Please sign in to comment.